rtst01
12/4/2014 - 10:28 AM

game

game

#!/usr/bin/env python
import os
import sys

if __name__ == "__main__":
    os.environ.setdefault("DJANGO_SETTINGS_MODULE", "game.settings")

    from django.core.management import execute_from_command_line

    execute_from_command_line(sys.argv)
"""
WSGI config for game project.

It exposes the WSGI callable as a module-level variable named ``application``.

For more information on this file, see
https://docs.djangoproject.com/en/1.7/howto/deployment/wsgi/
"""

import os
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "game.settings")

from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()
from django.conf.urls import patterns, include, url
from django.contrib import admin

urlpatterns = patterns('',
    # Examples:
    # url(r'^$', 'game.views.home', name='home'),
    # url(r'^blog/', include('blog.urls')),

    url(r'^admin/', include(admin.site.urls)),
)
"""
Django settings for game project.

For more information on this file, see
https://docs.djangoproject.com/en/1.7/topics/settings/

For the full list of settings and their values, see
https://docs.djangoproject.com/en/1.7/ref/settings/
"""

# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
import os
BASE_DIR = os.path.dirname(os.path.dirname(__file__))


# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/1.7/howto/deployment/checklist/

# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 'gokrj^loqbhu7n(s+aoca1@-bf#-tm3tor2&9$6v5$7h)y!g+p'

# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True

TEMPLATE_DEBUG = True

ALLOWED_HOSTS = []


# Application definition

INSTALLED_APPS = (
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
)

MIDDLEWARE_CLASSES = (
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.middleware.common.CommonMiddleware',
    'django.middleware.csrf.CsrfViewMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
    'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
    'django.contrib.messages.middleware.MessageMiddleware',
    'django.middleware.clickjacking.XFrameOptionsMiddleware',
)

ROOT_URLCONF = 'game.urls'

WSGI_APPLICATION = 'game.wsgi.application'


# Database
# https://docs.djangoproject.com/en/1.7/ref/settings/#databases

DATABASES = {
    'default': {
    'ENGINE': 'django.db.backends.postgresql_psycopg2',
    'NAME': 'gamedb',
    'USER': 'rtst',
    'PASSWORD': '1988',
    'HOST': '', # Set to empty string for localhost.
    'PORT': '', # Set to empty string for default.
    }
}

# Internationalization
# https://docs.djangoproject.com/en/1.7/topics/i18n/

LANGUAGE_CODE = 'en-us, ru-ru'

TIME_ZONE = 'UTC'

USE_I18N = True

USE_L10N = True

USE_TZ = True


# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.7/howto/static-files/

STATIC_URL = '/static/'
SQLite format 3@  $-������ ���������������	
/������d/3%Asessions0001_initial2014-12-04 08:24:52.4978960%Aadmin0001_initial2014-12-04 08:24:52.337562/%Aauth0001_initial2014-12-04 08:24:52.1619307%%Acontenttypes0001_initial2014-12-04 08:24:51.977987
���������������3django_content_type+auth_permission/django_migrations
?���������`2������������`>���������g?&1)Can delete sessiondelete_session&1)Can change sessionchange_session +#Can add sessionadd_session/;1Can delete content typedelete_contenttype/;1Can change content typechange_contenttype)
5+Can add content typeadd_contenttype +#Can delete userdelete_user +#Can change userchange_user
%Can add useradd_user"	-%Can delete groupdelete_group"-%Can change groupchange_group'Can add groupadd_group,7/Can delete permissiondelete_permission,7/Can change permissionchange_permission&1)Can add permissionadd_permission(5	+Can delete log entrydelete_logentry(5	+Can change log entrychange_logentry"/	%Can add log entryadd_logentry
U������������rUsessionsessionssession(%%#content typecontenttypescontenttypeuserauthusergroupauthgroup!!permissionauthpermissionlog entryadminlogentry
���������������������sessionssession%#contenttypescontenttype
authuserauthgroup!authpermission	adminlogentry
���������������������p]J;)���������������)delete_session)change_session#add_session1delete_contenttype1change_contenttype+add_contenttype
#delete_user#change_useradd_user
%delete_group	%change_groupadd_group/delete_permission/change_permission)add_permission	+delete_logentry	+change_logentry	%	add_logentry
QQ-���������Y//���atabledjango_migrationsdjango_migrationsCREATE TABLE "django_migrations" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "app" varchar(255) NOT NULL, "name" varchar(255) NOT NULL, "applied" datetime NOT NULL)P++Ytablesqlite_sequencesqlite_sequenceCREATE TABLE sqlite_sequence(name,seq)���33���3tabledjango_content_typedjango_content_typeCREATE TABLE "django_content_type" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "name" varchar(100) NOT NULL, "app_label" varchar(100) NOT NULL, "model" varchar(100) NOT NULL, UNIQUE ("app_label", "model"))EY3indexsqlite_autoindex_django_content_type_1django_content_type���.++���tableauth_permissionauth_permissionCREATE TABLE "auth_permission" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "name" varchar(50) NOT NULL, "content_type_id" integer NOT NULL REFERENCES "django_content_type" ("id"), "codename" varchar(100) NOT NULL, UNIQUE ("content_type_id", "codename"))
qq���Cx���=Q+indexsqlite_autoindex_auth_permission_1auth_permission���!!���ktableauth_groupauth_group
CREATE TABLE "auth_group" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "name" varchar(80) NOT NULL UNIQUE)3	G!indexsqlite_autoindex_auth_group_1auth_group���8
99���tableauth_group_permissionsauth_group_permissionsCREATE TABLE "auth_group_permissions" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "group_id" integer NOT NULL REFERENCES "auth_group" ("id"), "permission_id" integer NOT NULL REFERENCES "auth_permission" ("id"), UNIQUE ("group_id", "permission_id"))K_9indexsqlite_autoindex_auth_group_permissions_1auth_group_permissions







������u���������*���#tableauth_userauth_userCREATE TABLE "auth_user" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "password" varchar(128) NOT NULL, "last_login" datetime NOT NULL, "is_superuser" bool NOT NULL, "username" varchar(30) NOT NULL UNIQUE, "first_name" varchar(30) NOT NULL, "last_name" varchar(30) NOT NULL, "email" varchar(75) NOT NULL, "is_staff" bool NOT NULL, "is_active" bool NOT NULL, "date_joined" datetime NOT NULL)1
Eindexsqlite_autoindex_auth_user_1auth_user���--���[tableauth_user_groupsauth_user_groupsCREATE TABLE "auth_user_groups" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "user_id" integer NOT NULL REFERENCES "auth_user" ("id"), "group_id" integer NOT NULL REFERENCES "auth_group" ("id"), UNIQUE ("user_id", "group_id"))?S-indexsqlite_autoindex_auth_user_groups_1auth_user_groups




))m���G���������AAA���
tableauth_user_user_permissionsauth_user_user_permissionsCREATE TABLE "auth_user_user_permissions" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "user_id" integer NOT NULL REFERENCES "auth_user" ("id"), "permission_id" integer NOT NULL REFERENCES "auth_permission" ("id"), UNIQUE ("user_id", "permission_id"))SgAindexsqlite_autoindex_auth_user_user_permissions_1auth_user_user_permissions���=+���)indexauth_permission_417f1b1cauth_permissionCREATE INDEX auth_permission_417f1b1c ON "auth_permission" ("content_type_id")���K9���7indexauth_group_permissions_0e939a4fauth_group_permissionsCREATE INDEX auth_group_permissions_0e939a4f ON "auth_group_permissions" ("group_id")���K9���Aindexauth_group_permissions_8373b171auth_group_permissionsCREATE INDEX auth_group_permissions_8373b171 ON "auth_group_permissions" ("permission_id")~?-���indexauth_user_groups_e8701ad4auth_user_groupsCREATE INDEX auth_user_groups_e8701ad4 ON "auth_user_groups" ("user_id")
���������������������������������������������������������

					




}}������V?-���indexauth_user_groups_0e939a4fauth_user_groupsCREATE INDEX auth_user_groups_0e939a4f ON "auth_user_groups" ("group_id")���&SA���Eindexauth_user_user_permissions_e8701ad4auth_user_user_permissionsCREATE INDEX auth_user_user_permissions_e8701ad4 ON "auth_user_user_permissions" ("user_id")���,SA���Qindexauth_user_user_permissions_8373b171auth_user_user_permissionsCREATE INDEX auth_user_user_permissions_8373b171 ON "auth_user_user_permissions" ("permission_id")���'--���tabledjango_admin_logdjango_admin_logCREATE TABLE "django_admin_log" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "action_time" datetime NOT NULL, "object_id" text NULL, "object_repr" varchar(200) NOT NULL, "action_flag" smallint unsigned NOT NULL, "change_message" text NOT NULL, "content_type_id" integer NULL REFERENCES "django_content_type" ("id"), "user_id" integer NOT NULL REFERENCES "auth_user" ("id"))




������w������������z;)���indexdjango_session_de54fa62django_session$CREATE INDEX django_session_de54fa62 ON "django_session" ("expire_date")���6))���'tabledjango_sessiondjango_session"CREATE TABLE "django_session" ("session_key" varchar(40) NOT NULL PRIMARY KEY, "session_data" text NOT NULL, "expire_date" datetime NOT NULL);O)indexsqlite_autoindex_django_session_1django_session#~?-���indexdjango_admin_log_e8701ad4django_admin_log!CREATE INDEX django_admin_log_e8701ad4 ON "django_admin_log" ("user_id")���?-���-indexdjango_admin_log_417f1b1cdjango_admin_logCREATE INDEX django_admin_log_417f1b1c ON "django_admin_log" ("content_type_id")




<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="VcsDirectoryMappings">
    <mapping directory="" vcs="" />
  </component>
</project>
<component name="DependencyValidationManager">
  <state>
    <option name="SKIP_IMPORT_STATEMENTS" value="false" />
  </state>
</component>
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="ProjectModuleManager">
    <modules>
      <module fileurl="file://$PROJECT_DIR$/.idea/game.iml" filepath="$PROJECT_DIR$/.idea/game.iml" />
    </modules>
  </component>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="ProjectRootManager" version="2" project-jdk-name="Python 3.4.0 (/usr/bin/python3.4)" project-jdk-type="Python SDK" />
</project>
<?xml version="1.0" encoding="UTF-8"?>
<module type="PYTHON_MODULE" version="4">
  <component name="FacetManager">
    <facet type="django" name="Django">
      <configuration>
        <option name="rootFolder" value="$MODULE_DIR$" />
        <option name="settingsModule" value="game/settings.py" />
        <option name="manageScript" value="manage.py" />
        <option name="environment" value="&lt;map/&gt;" />
      </configuration>
    </facet>
  </component>
  <component name="NewModuleRootManager">
    <content url="file://$MODULE_DIR$" />
    <orderEntry type="inheritedJdk" />
    <orderEntry type="sourceFolder" forTests="false" />
  </component>
  <component name="TemplatesService">
    <option name="TEMPLATE_CONFIGURATION" value="Django" />
    <option name="TEMPLATE_FOLDERS">
      <list>
        <option value="$MODULE_DIR$/templates" />
      </list>
    </option>
  </component>
</module>
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="Encoding" useUTFGuessing="true" native2AsciiForPropertiesFiles="false" />
</project>
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="DataSourceManagerImpl" format="xml" hash="2803570422">
    <data-source source="LOCAL" name="PostgreSQL - gamedb@localhost" uuid="80344dc7-4e6b-4f79-9d3f-d8ddb2d6c003">
      <driver-ref>postgresql</driver-ref>
      <synchronize>true</synchronize>
      <jdbc-driver>org.postgresql.Driver</jdbc-driver>
      <jdbc-url>jdbc:postgresql://localhost:5432/gamedb</jdbc-url>
      <libraries />
    </data-source>
  </component>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<component name="dataSourceStorage">
  <data-source name="PostgreSQL - gamedb@localhost" uuid="80344dc7-4e6b-4f79-9d3f-d8ddb2d6c003">
    <database-info product="PostgreSQL" version="9.3.5" jdbc-version="4.0" driver-name="PostgreSQL Native Driver" driver-version="PostgreSQL 9.3 JDBC4 (build 1100)">
      <identifier-quote-string>&quot;</identifier-quote-string>
    </database-info>
    <case-sensitivity plain-identifiers="lower" quoted-identifiers="exact"/>
    <schema name="information_schema" catalog="gamedb"/>
    <schema name="pg_catalog" catalog="gamedb"/>
    <schema name="public" catalog="gamedb"/>
    <table name="_pg_foreign_data_wrappers" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="oid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="fdwowner" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="fdwoptions" sqlType="_text" precision="2147483647" scale="0" nullable="true" jdbcType="2003"/>
      <column name="foreign_data_wrapper_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="foreign_data_wrapper_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="authorization_identifier" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="foreign_data_wrapper_language" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="_pg_foreign_servers" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="oid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="srvoptions" sqlType="_text" precision="2147483647" scale="0" nullable="true" jdbcType="2003"/>
      <column name="foreign_server_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="foreign_server_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="foreign_data_wrapper_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="foreign_data_wrapper_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="foreign_server_type" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="foreign_server_version" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="authorization_identifier" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="_pg_foreign_table_columns" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="nspname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="relname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="attname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="attfdwoptions" sqlType="_text" precision="2147483647" scale="0" nullable="true" jdbcType="2003"/>
    </table>
    <table name="_pg_foreign_tables" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="foreign_table_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="foreign_table_schema" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="foreign_table_name" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="ftoptions" sqlType="_text" precision="2147483647" scale="0" nullable="true" jdbcType="2003"/>
      <column name="foreign_server_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="foreign_server_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="authorization_identifier" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="_pg_user_mappings" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="oid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="umoptions" sqlType="_text" precision="2147483647" scale="0" nullable="true" jdbcType="2003"/>
      <column name="umuser" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="authorization_identifier" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="foreign_server_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="foreign_server_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="srvowner" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="administrable_role_authorizations" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="grantee" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="role_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_grantable" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="applicable_roles" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="grantee" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="role_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_grantable" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="attributes" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="udt_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="udt_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="udt_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="attribute_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="ordinal_position" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="attribute_default" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_nullable" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="data_type" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_maximum_length" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_octet_length" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_set_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_set_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_set_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="collation_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="collation_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="collation_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="numeric_precision" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="numeric_precision_radix" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="numeric_scale" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="datetime_precision" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="interval_type" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="interval_precision" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="attribute_udt_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="attribute_udt_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="attribute_udt_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="scope_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="scope_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="scope_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="maximum_cardinality" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="dtd_identifier" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_derived_reference_attribute" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="character_sets" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="character_set_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_set_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_set_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_repertoire" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="form_of_use" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="default_collate_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="default_collate_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="default_collate_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="check_constraint_routine_usage" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="constraint_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="constraint_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="constraint_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="specific_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="specific_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="specific_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="check_constraints" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="constraint_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="constraint_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="constraint_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="check_clause" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="collation_character_set_applicability" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="collation_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="collation_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="collation_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_set_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_set_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_set_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="collations" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="collation_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="collation_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="collation_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="pad_attribute" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="column_domain_usage" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="domain_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="domain_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="domain_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="column_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="column_options" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="table_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_schema" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="table_name" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="column_name" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="option_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="option_value" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="column_privileges" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="grantor" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="grantee" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="column_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="privilege_type" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_grantable" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="column_udt_usage" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="udt_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="udt_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="udt_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="column_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="columns" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="table_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="column_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="ordinal_position" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="column_default" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_nullable" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="data_type" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_maximum_length" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_octet_length" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="numeric_precision" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="numeric_precision_radix" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="numeric_scale" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="datetime_precision" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="interval_type" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="interval_precision" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_set_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_set_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_set_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="collation_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="collation_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="collation_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="domain_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="domain_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="domain_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="udt_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="udt_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="udt_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="scope_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="scope_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="scope_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="maximum_cardinality" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="dtd_identifier" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_self_referencing" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_identity" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="identity_generation" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="identity_start" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="identity_increment" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="identity_maximum" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="identity_minimum" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="identity_cycle" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_generated" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="generation_expression" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_updatable" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="constraint_column_usage" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="table_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="column_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="constraint_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="constraint_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="constraint_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="constraint_table_usage" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="table_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="constraint_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="constraint_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="constraint_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="data_type_privileges" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="object_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="object_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="object_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="object_type" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="dtd_identifier" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="domain_constraints" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="constraint_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="constraint_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="constraint_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="domain_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="domain_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="domain_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_deferrable" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="initially_deferred" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="domain_udt_usage" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="udt_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="udt_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="udt_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="domain_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="domain_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="domain_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="domains" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="domain_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="domain_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="domain_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="data_type" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_maximum_length" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_octet_length" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_set_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_set_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_set_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="collation_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="collation_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="collation_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="numeric_precision" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="numeric_precision_radix" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="numeric_scale" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="datetime_precision" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="interval_type" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="interval_precision" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="domain_default" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="udt_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="udt_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="udt_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="scope_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="scope_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="scope_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="maximum_cardinality" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="dtd_identifier" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="element_types" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="object_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="object_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="object_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="object_type" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="collection_type_identifier" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="data_type" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_maximum_length" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_octet_length" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_set_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_set_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_set_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="collation_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="collation_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="collation_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="numeric_precision" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="numeric_precision_radix" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="numeric_scale" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="datetime_precision" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="interval_type" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="interval_precision" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="domain_default" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="udt_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="udt_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="udt_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="scope_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="scope_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="scope_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="maximum_cardinality" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="dtd_identifier" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="enabled_roles" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="role_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="foreign_data_wrapper_options" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="foreign_data_wrapper_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="foreign_data_wrapper_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="option_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="option_value" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="foreign_data_wrappers" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="foreign_data_wrapper_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="foreign_data_wrapper_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="authorization_identifier" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="library_name" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="foreign_data_wrapper_language" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="foreign_server_options" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="foreign_server_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="foreign_server_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="option_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="option_value" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="foreign_servers" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="foreign_server_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="foreign_server_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="foreign_data_wrapper_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="foreign_data_wrapper_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="foreign_server_type" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="foreign_server_version" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="authorization_identifier" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="foreign_table_options" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="foreign_table_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="foreign_table_schema" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="foreign_table_name" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="option_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="option_value" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="foreign_tables" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="foreign_table_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="foreign_table_schema" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="foreign_table_name" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="foreign_server_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="foreign_server_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="information_schema_catalog_name" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="catalog_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="key_column_usage" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="constraint_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="constraint_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="constraint_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="column_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="ordinal_position" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="position_in_unique_constraint" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="parameters" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="specific_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="specific_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="specific_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="ordinal_position" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="parameter_mode" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_result" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="as_locator" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="parameter_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="data_type" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_maximum_length" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_octet_length" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_set_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_set_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_set_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="collation_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="collation_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="collation_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="numeric_precision" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="numeric_precision_radix" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="numeric_scale" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="datetime_precision" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="interval_type" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="interval_precision" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="udt_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="udt_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="udt_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="scope_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="scope_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="scope_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="maximum_cardinality" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="dtd_identifier" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="referential_constraints" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="constraint_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="constraint_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="constraint_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="unique_constraint_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="unique_constraint_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="unique_constraint_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="match_option" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="update_rule" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="delete_rule" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="role_column_grants" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="grantor" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="grantee" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="column_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="privilege_type" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_grantable" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="role_routine_grants" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="grantor" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="grantee" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="specific_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="specific_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="specific_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="routine_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="routine_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="routine_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="privilege_type" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_grantable" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="role_table_grants" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="grantor" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="grantee" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="privilege_type" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_grantable" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="with_hierarchy" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="role_udt_grants" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="grantor" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="grantee" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="udt_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="udt_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="udt_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="privilege_type" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_grantable" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="role_usage_grants" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="grantor" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="grantee" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="object_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="object_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="object_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="object_type" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="privilege_type" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_grantable" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="routine_privileges" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="grantor" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="grantee" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="specific_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="specific_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="specific_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="routine_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="routine_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="routine_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="privilege_type" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_grantable" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="routines" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="specific_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="specific_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="specific_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="routine_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="routine_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="routine_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="routine_type" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="module_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="module_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="module_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="udt_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="udt_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="udt_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="data_type" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_maximum_length" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_octet_length" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_set_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_set_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_set_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="collation_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="collation_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="collation_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="numeric_precision" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="numeric_precision_radix" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="numeric_scale" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="datetime_precision" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="interval_type" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="interval_precision" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="type_udt_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="type_udt_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="type_udt_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="scope_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="scope_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="scope_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="maximum_cardinality" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="dtd_identifier" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="routine_body" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="routine_definition" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="external_name" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="external_language" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="parameter_style" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_deterministic" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="sql_data_access" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_null_call" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="sql_path" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="schema_level_routine" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="max_dynamic_result_sets" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_user_defined_cast" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_implicitly_invocable" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="security_type" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="to_sql_specific_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="to_sql_specific_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="to_sql_specific_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="as_locator" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="created" sqlType="time_stamp" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="last_altered" sqlType="time_stamp" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="new_savepoint_level" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_udt_dependent" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="result_cast_from_data_type" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="result_cast_as_locator" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="result_cast_char_max_length" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="result_cast_char_octet_length" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="result_cast_char_set_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="result_cast_char_set_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="result_cast_character_set_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="result_cast_collation_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="result_cast_collation_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="result_cast_collation_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="result_cast_numeric_precision" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="result_cast_numeric_precision_radix" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="result_cast_numeric_scale" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="result_cast_datetime_precision" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="result_cast_interval_type" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="result_cast_interval_precision" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="result_cast_type_udt_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="result_cast_type_udt_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="result_cast_type_udt_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="result_cast_scope_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="result_cast_scope_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="result_cast_scope_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="result_cast_maximum_cardinality" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="result_cast_dtd_identifier" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="schemata" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="catalog_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="schema_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="schema_owner" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="default_character_set_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="default_character_set_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="default_character_set_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="sql_path" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="sequences" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="sequence_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="sequence_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="sequence_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="data_type" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="numeric_precision" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="numeric_precision_radix" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="numeric_scale" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="start_value" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="minimum_value" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="maximum_value" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="increment" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="cycle_option" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="sql_features" schema="information_schema" catalog="gamedb" type="SYSTEM TABLE">
      <column name="feature_id" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="feature_name" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="sub_feature_id" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="sub_feature_name" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_supported" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_verified_by" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="comments" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="sql_implementation_info" schema="information_schema" catalog="gamedb" type="SYSTEM TABLE">
      <column name="implementation_info_id" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="implementation_info_name" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="integer_value" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_value" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="comments" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="sql_languages" schema="information_schema" catalog="gamedb" type="SYSTEM TABLE">
      <column name="sql_language_source" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="sql_language_year" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="sql_language_conformance" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="sql_language_integrity" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="sql_language_implementation" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="sql_language_binding_style" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="sql_language_programming_language" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="sql_packages" schema="information_schema" catalog="gamedb" type="SYSTEM TABLE">
      <column name="feature_id" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="feature_name" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_supported" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_verified_by" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="comments" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="sql_parts" schema="information_schema" catalog="gamedb" type="SYSTEM TABLE">
      <column name="feature_id" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="feature_name" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_supported" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_verified_by" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="comments" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="sql_sizing" schema="information_schema" catalog="gamedb" type="SYSTEM TABLE">
      <column name="sizing_id" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="sizing_name" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="supported_value" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="comments" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="sql_sizing_profiles" schema="information_schema" catalog="gamedb" type="SYSTEM TABLE">
      <column name="sizing_id" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="sizing_name" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="profile_id" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="required_value" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="comments" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="table_constraints" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="constraint_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="constraint_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="constraint_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="constraint_type" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_deferrable" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="initially_deferred" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="table_privileges" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="grantor" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="grantee" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="privilege_type" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_grantable" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="with_hierarchy" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="tables" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="table_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_type" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="self_referencing_column_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="reference_generation" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="user_defined_type_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="user_defined_type_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="user_defined_type_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_insertable_into" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_typed" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="commit_action" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="triggered_update_columns" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="trigger_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="trigger_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="trigger_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="event_object_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="event_object_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="event_object_table" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="event_object_column" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="triggers" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="trigger_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="trigger_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="trigger_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="event_manipulation" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="event_object_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="event_object_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="event_object_table" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="action_order" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="action_condition" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="action_statement" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="action_orientation" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="action_timing" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="action_reference_old_table" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="action_reference_new_table" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="action_reference_old_row" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="action_reference_new_row" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="created" sqlType="time_stamp" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="udt_privileges" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="grantor" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="grantee" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="udt_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="udt_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="udt_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="privilege_type" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_grantable" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="usage_privileges" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="grantor" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="grantee" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="object_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="object_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="object_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="object_type" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="privilege_type" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_grantable" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="user_defined_types" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="user_defined_type_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="user_defined_type_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="user_defined_type_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="user_defined_type_category" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_instantiable" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_final" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="ordering_form" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="ordering_category" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="ordering_routine_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="ordering_routine_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="ordering_routine_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="reference_type" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="data_type" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_maximum_length" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_octet_length" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_set_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_set_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="character_set_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="collation_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="collation_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="collation_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="numeric_precision" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="numeric_precision_radix" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="numeric_scale" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="datetime_precision" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="interval_type" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="interval_precision" sqlType="cardinal_number" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="source_dtd_identifier" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="ref_dtd_identifier" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="user_mapping_options" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="authorization_identifier" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="foreign_server_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="foreign_server_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="option_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="option_value" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="user_mappings" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="authorization_identifier" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="foreign_server_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="foreign_server_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="view_column_usage" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="view_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="view_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="view_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="column_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="view_routine_usage" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="table_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="specific_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="specific_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="specific_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="view_table_usage" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="view_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="view_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="view_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="views" schema="information_schema" catalog="gamedb" type="SYSTEM VIEW">
      <column name="table_catalog" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_schema" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="table_name" sqlType="sql_identifier" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="view_definition" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="check_option" sqlType="character_data" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_updatable" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_insertable_into" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_trigger_updatable" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_trigger_deletable" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
      <column name="is_trigger_insertable_into" sqlType="yes_or_no" precision="2147483647" scale="0" nullable="true" jdbcType="2001"/>
    </table>
    <table name="pg_aggregate" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="aggfnoid" sqlType="regproc" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="aggtransfn" sqlType="regproc" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="aggfinalfn" sqlType="regproc" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="aggsortop" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="aggtranstype" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="agginitval" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <index name="pg_aggregate_fnoid_index" unique="true" columns="aggfnoid"/>
    </table>
    <table name="pg_aggregate_fnoid_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="aggfnoid" sqlType="regproc" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
    </table>
    <table name="pg_am" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="amname" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="amstrategies" sqlType="int2" precision="5" scale="0" nullable="false" jdbcType="5"/>
      <column name="amsupport" sqlType="int2" precision="5" scale="0" nullable="false" jdbcType="5"/>
      <column name="amcanorder" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="amcanorderbyop" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="amcanbackward" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="amcanunique" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="amcanmulticol" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="amoptionalkey" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="amsearcharray" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="amsearchnulls" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="amstorage" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="amclusterable" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="ampredlocks" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="amkeytype" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="aminsert" sqlType="regproc" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="ambeginscan" sqlType="regproc" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="amgettuple" sqlType="regproc" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="amgetbitmap" sqlType="regproc" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="amrescan" sqlType="regproc" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="amendscan" sqlType="regproc" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="ammarkpos" sqlType="regproc" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="amrestrpos" sqlType="regproc" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="ambuild" sqlType="regproc" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="ambuildempty" sqlType="regproc" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="ambulkdelete" sqlType="regproc" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="amvacuumcleanup" sqlType="regproc" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="amcanreturn" sqlType="regproc" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="amcostestimate" sqlType="regproc" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="amoptions" sqlType="regproc" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <index name="pg_am_name_index" unique="true" columns="amname"/>
      <index name="pg_am_oid_index" unique="true" columns="oid"/>
    </table>
    <table name="pg_am_name_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="amname" sqlType="cstring" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
    </table>
    <table name="pg_am_oid_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="oid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_amop" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="amopfamily" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="amoplefttype" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="amoprighttype" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="amopstrategy" sqlType="int2" precision="5" scale="0" nullable="false" jdbcType="5"/>
      <column name="amoppurpose" sqlType="char" precision="1" scale="0" nullable="false" jdbcType="1"/>
      <column name="amopopr" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="amopmethod" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="amopsortfamily" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <index name="pg_amop_fam_strat_index" unique="true" columns="amopfamily,amoplefttype,amoprighttype,amopstrategy"/>
      <index name="pg_amop_oid_index" unique="true" columns="oid"/>
      <index name="pg_amop_opr_fam_index" unique="true" columns="amopopr,amoppurpose,amopfamily"/>
    </table>
    <table name="pg_amop_fam_strat_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="amopfamily" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="amoplefttype" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="amoprighttype" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="amopstrategy" sqlType="int2" precision="5" scale="0" nullable="true" jdbcType="5"/>
    </table>
    <table name="pg_amop_oid_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="oid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_amop_opr_fam_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="amopopr" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="amoppurpose" sqlType="char" precision="1" scale="0" nullable="true" jdbcType="1"/>
      <column name="amopfamily" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_amproc" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="amprocfamily" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="amproclefttype" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="amprocrighttype" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="amprocnum" sqlType="int2" precision="5" scale="0" nullable="false" jdbcType="5"/>
      <column name="amproc" sqlType="regproc" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <index name="pg_amproc_fam_proc_index" unique="true" columns="amprocfamily,amproclefttype,amprocrighttype,amprocnum"/>
      <index name="pg_amproc_oid_index" unique="true" columns="oid"/>
    </table>
    <table name="pg_amproc_fam_proc_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="amprocfamily" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="amproclefttype" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="amprocrighttype" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="amprocnum" sqlType="int2" precision="5" scale="0" nullable="true" jdbcType="5"/>
    </table>
    <table name="pg_amproc_oid_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="oid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_attrdef" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="adrelid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="adnum" sqlType="int2" precision="5" scale="0" nullable="false" jdbcType="5"/>
      <column name="adbin" sqlType="pg_node_tree" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
      <column name="adsrc" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <index name="pg_attrdef_adrelid_adnum_index" unique="true" columns="adrelid,adnum"/>
      <index name="pg_attrdef_oid_index" unique="true" columns="oid"/>
    </table>
    <table name="pg_attrdef_adrelid_adnum_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="adrelid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="adnum" sqlType="int2" precision="5" scale="0" nullable="true" jdbcType="5"/>
    </table>
    <table name="pg_attrdef_oid_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="oid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_attribute" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="attrelid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="attname" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="atttypid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="attstattarget" sqlType="int4" precision="10" scale="0" nullable="false" jdbcType="4"/>
      <column name="attlen" sqlType="int2" precision="5" scale="0" nullable="false" jdbcType="5"/>
      <column name="attnum" sqlType="int2" precision="5" scale="0" nullable="false" jdbcType="5"/>
      <column name="attndims" sqlType="int4" precision="10" scale="0" nullable="false" jdbcType="4"/>
      <column name="attcacheoff" sqlType="int4" precision="10" scale="0" nullable="false" jdbcType="4"/>
      <column name="atttypmod" sqlType="int4" precision="10" scale="0" nullable="false" jdbcType="4"/>
      <column name="attbyval" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="attstorage" sqlType="char" precision="1" scale="0" nullable="false" jdbcType="1"/>
      <column name="attalign" sqlType="char" precision="1" scale="0" nullable="false" jdbcType="1"/>
      <column name="attnotnull" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="atthasdef" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="attisdropped" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="attislocal" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="attinhcount" sqlType="int4" precision="10" scale="0" nullable="false" jdbcType="4"/>
      <column name="attcollation" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="attacl" sqlType="_aclitem" precision="2147483647" scale="0" nullable="true" jdbcType="2003"/>
      <column name="attoptions" sqlType="_text" precision="2147483647" scale="0" nullable="true" jdbcType="2003"/>
      <column name="attfdwoptions" sqlType="_text" precision="2147483647" scale="0" nullable="true" jdbcType="2003"/>
      <index name="pg_attribute_relid_attnam_index" unique="true" columns="attrelid,attname"/>
      <index name="pg_attribute_relid_attnum_index" unique="true" columns="attrelid,attnum"/>
    </table>
    <table name="pg_attribute_relid_attnam_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="attrelid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="attname" sqlType="cstring" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
    </table>
    <table name="pg_attribute_relid_attnum_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="attrelid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="attnum" sqlType="int2" precision="5" scale="0" nullable="true" jdbcType="5"/>
    </table>
    <table name="pg_auth_members" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="roleid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="member" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="grantor" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="admin_option" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <index name="pg_auth_members_member_role_index" unique="true" columns="member,roleid"/>
      <index name="pg_auth_members_role_member_index" unique="true" columns="roleid,member"/>
    </table>
    <table name="pg_auth_members_member_role_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="member" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="roleid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_auth_members_role_member_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="roleid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="member" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_authid" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="rolname" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="rolsuper" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="rolinherit" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="rolcreaterole" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="rolcreatedb" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="rolcatupdate" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="rolcanlogin" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="rolreplication" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="rolconnlimit" sqlType="int4" precision="10" scale="0" nullable="false" jdbcType="4"/>
      <column name="rolpassword" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="rolvaliduntil" sqlType="timestamptz" precision="35" scale="6" nullable="true" jdbcType="93"/>
      <index name="pg_authid_oid_index" unique="true" columns="oid"/>
      <index name="pg_authid_rolname_index" unique="true" columns="rolname"/>
    </table>
    <table name="pg_authid_oid_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="oid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_authid_rolname_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="rolname" sqlType="cstring" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
    </table>
    <table name="pg_available_extension_versions" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="name" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="version" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="installed" sqlType="bool" precision="1" scale="0" nullable="true" jdbcType="-7"/>
      <column name="superuser" sqlType="bool" precision="1" scale="0" nullable="true" jdbcType="-7"/>
      <column name="relocatable" sqlType="bool" precision="1" scale="0" nullable="true" jdbcType="-7"/>
      <column name="schema" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="requires" sqlType="_name" precision="2147483647" scale="0" nullable="true" jdbcType="2003"/>
      <column name="comment" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
    </table>
    <table name="pg_available_extensions" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="name" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="default_version" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="installed_version" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="comment" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
    </table>
    <table name="pg_cast" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="castsource" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="casttarget" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="castfunc" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="castcontext" sqlType="char" precision="1" scale="0" nullable="false" jdbcType="1"/>
      <column name="castmethod" sqlType="char" precision="1" scale="0" nullable="false" jdbcType="1"/>
      <index name="pg_cast_oid_index" unique="true" columns="oid"/>
      <index name="pg_cast_source_target_index" unique="true" columns="castsource,casttarget"/>
    </table>
    <table name="pg_cast_oid_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="oid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_cast_source_target_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="castsource" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="casttarget" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_class" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="relname" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="relnamespace" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="reltype" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="reloftype" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="relowner" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="relam" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="relfilenode" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="reltablespace" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="relpages" sqlType="int4" precision="10" scale="0" nullable="false" jdbcType="4"/>
      <column name="reltuples" sqlType="float4" precision="8" scale="8" nullable="false" jdbcType="7"/>
      <column name="relallvisible" sqlType="int4" precision="10" scale="0" nullable="false" jdbcType="4"/>
      <column name="reltoastrelid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="reltoastidxid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="relhasindex" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="relisshared" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="relpersistence" sqlType="char" precision="1" scale="0" nullable="false" jdbcType="1"/>
      <column name="relkind" sqlType="char" precision="1" scale="0" nullable="false" jdbcType="1"/>
      <column name="relnatts" sqlType="int2" precision="5" scale="0" nullable="false" jdbcType="5"/>
      <column name="relchecks" sqlType="int2" precision="5" scale="0" nullable="false" jdbcType="5"/>
      <column name="relhasoids" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="relhaspkey" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="relhasrules" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="relhastriggers" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="relhassubclass" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="relispopulated" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="relfrozenxid" sqlType="xid" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="relminmxid" sqlType="xid" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="relacl" sqlType="_aclitem" precision="2147483647" scale="0" nullable="true" jdbcType="2003"/>
      <column name="reloptions" sqlType="_text" precision="2147483647" scale="0" nullable="true" jdbcType="2003"/>
      <index name="pg_class_oid_index" unique="true" columns="oid"/>
      <index name="pg_class_relname_nsp_index" unique="true" columns="relname,relnamespace"/>
    </table>
    <table name="pg_class_oid_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="oid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_class_relname_nsp_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="relname" sqlType="cstring" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
      <column name="relnamespace" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_collation" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="collname" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="collnamespace" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="collowner" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="collencoding" sqlType="int4" precision="10" scale="0" nullable="false" jdbcType="4"/>
      <column name="collcollate" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="collctype" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <index name="pg_collation_name_enc_nsp_index" unique="true" columns="collname,collencoding,collnamespace"/>
      <index name="pg_collation_oid_index" unique="true" columns="oid"/>
    </table>
    <table name="pg_collation_name_enc_nsp_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="collname" sqlType="cstring" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
      <column name="collencoding" sqlType="int4" precision="10" scale="0" nullable="true" jdbcType="4"/>
      <column name="collnamespace" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_collation_oid_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="oid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_constraint" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="conname" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="connamespace" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="contype" sqlType="char" precision="1" scale="0" nullable="false" jdbcType="1"/>
      <column name="condeferrable" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="condeferred" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="convalidated" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="conrelid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="contypid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="conindid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="confrelid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="confupdtype" sqlType="char" precision="1" scale="0" nullable="false" jdbcType="1"/>
      <column name="confdeltype" sqlType="char" precision="1" scale="0" nullable="false" jdbcType="1"/>
      <column name="confmatchtype" sqlType="char" precision="1" scale="0" nullable="false" jdbcType="1"/>
      <column name="conislocal" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="coninhcount" sqlType="int4" precision="10" scale="0" nullable="false" jdbcType="4"/>
      <column name="connoinherit" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="conkey" sqlType="_int2" precision="5" scale="0" nullable="true" jdbcType="2003"/>
      <column name="confkey" sqlType="_int2" precision="5" scale="0" nullable="true" jdbcType="2003"/>
      <column name="conpfeqop" sqlType="_oid" precision="10" scale="0" nullable="true" jdbcType="2003"/>
      <column name="conppeqop" sqlType="_oid" precision="10" scale="0" nullable="true" jdbcType="2003"/>
      <column name="conffeqop" sqlType="_oid" precision="10" scale="0" nullable="true" jdbcType="2003"/>
      <column name="conexclop" sqlType="_oid" precision="10" scale="0" nullable="true" jdbcType="2003"/>
      <column name="conbin" sqlType="pg_node_tree" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
      <column name="consrc" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <index name="pg_constraint_oid_index" unique="true" columns="oid"/>
      <index name="pg_constraint_conname_nsp_index" unique="false" columns="conname,connamespace"/>
      <index name="pg_constraint_conrelid_index" unique="false" columns="conrelid"/>
      <index name="pg_constraint_contypid_index" unique="false" columns="contypid"/>
    </table>
    <table name="pg_constraint_conname_nsp_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="conname" sqlType="cstring" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
      <column name="connamespace" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_constraint_conrelid_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="conrelid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_constraint_contypid_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="contypid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_constraint_oid_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="oid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_conversion" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="conname" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="connamespace" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="conowner" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="conforencoding" sqlType="int4" precision="10" scale="0" nullable="false" jdbcType="4"/>
      <column name="contoencoding" sqlType="int4" precision="10" scale="0" nullable="false" jdbcType="4"/>
      <column name="conproc" sqlType="regproc" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="condefault" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <index name="pg_conversion_default_index" unique="true" columns="connamespace,conforencoding,contoencoding,oid"/>
      <index name="pg_conversion_name_nsp_index" unique="true" columns="conname,connamespace"/>
      <index name="pg_conversion_oid_index" unique="true" columns="oid"/>
    </table>
    <table name="pg_conversion_default_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="connamespace" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="conforencoding" sqlType="int4" precision="10" scale="0" nullable="true" jdbcType="4"/>
      <column name="contoencoding" sqlType="int4" precision="10" scale="0" nullable="true" jdbcType="4"/>
      <column name="oid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_conversion_name_nsp_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="conname" sqlType="cstring" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
      <column name="connamespace" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_conversion_oid_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="oid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_cursors" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="name" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="statement" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="is_holdable" sqlType="bool" precision="1" scale="0" nullable="true" jdbcType="-7"/>
      <column name="is_binary" sqlType="bool" precision="1" scale="0" nullable="true" jdbcType="-7"/>
      <column name="is_scrollable" sqlType="bool" precision="1" scale="0" nullable="true" jdbcType="-7"/>
      <column name="creation_time" sqlType="timestamptz" precision="35" scale="6" nullable="true" jdbcType="93"/>
    </table>
    <table name="pg_database" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="datname" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="datdba" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="encoding" sqlType="int4" precision="10" scale="0" nullable="false" jdbcType="4"/>
      <column name="datcollate" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="datctype" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="datistemplate" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="datallowconn" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="datconnlimit" sqlType="int4" precision="10" scale="0" nullable="false" jdbcType="4"/>
      <column name="datlastsysoid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="datfrozenxid" sqlType="xid" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="datminmxid" sqlType="xid" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="dattablespace" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="datacl" sqlType="_aclitem" precision="2147483647" scale="0" nullable="true" jdbcType="2003"/>
      <index name="pg_database_datname_index" unique="true" columns="datname"/>
      <index name="pg_database_oid_index" unique="true" columns="oid"/>
    </table>
    <table name="pg_database_datname_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="datname" sqlType="cstring" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
    </table>
    <table name="pg_database_oid_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="oid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_db_role_setting" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="setdatabase" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="setrole" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="setconfig" sqlType="_text" precision="2147483647" scale="0" nullable="true" jdbcType="2003"/>
      <index name="pg_db_role_setting_databaseid_rol_index" unique="true" columns="setdatabase,setrole"/>
    </table>
    <table name="pg_db_role_setting_databaseid_rol_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="setdatabase" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="setrole" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_default_acl" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="defaclrole" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="defaclnamespace" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="defaclobjtype" sqlType="char" precision="1" scale="0" nullable="false" jdbcType="1"/>
      <column name="defaclacl" sqlType="_aclitem" precision="2147483647" scale="0" nullable="true" jdbcType="2003"/>
      <index name="pg_default_acl_oid_index" unique="true" columns="oid"/>
      <index name="pg_default_acl_role_nsp_obj_index" unique="true" columns="defaclrole,defaclnamespace,defaclobjtype"/>
    </table>
    <table name="pg_default_acl_oid_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="oid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_default_acl_role_nsp_obj_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="defaclrole" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="defaclnamespace" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="defaclobjtype" sqlType="char" precision="1" scale="0" nullable="true" jdbcType="1"/>
    </table>
    <table name="pg_depend" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="classid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="objid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="objsubid" sqlType="int4" precision="10" scale="0" nullable="false" jdbcType="4"/>
      <column name="refclassid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="refobjid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="refobjsubid" sqlType="int4" precision="10" scale="0" nullable="false" jdbcType="4"/>
      <column name="deptype" sqlType="char" precision="1" scale="0" nullable="false" jdbcType="1"/>
      <index name="pg_depend_depender_index" unique="false" columns="classid,objid,objsubid"/>
      <index name="pg_depend_reference_index" unique="false" columns="refclassid,refobjid,refobjsubid"/>
    </table>
    <table name="pg_depend_depender_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="classid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="objid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="objsubid" sqlType="int4" precision="10" scale="0" nullable="true" jdbcType="4"/>
    </table>
    <table name="pg_depend_reference_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="refclassid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="refobjid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="refobjsubid" sqlType="int4" precision="10" scale="0" nullable="true" jdbcType="4"/>
    </table>
    <table name="pg_description" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="objoid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="classoid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="objsubid" sqlType="int4" precision="10" scale="0" nullable="false" jdbcType="4"/>
      <column name="description" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <index name="pg_description_o_c_o_index" unique="true" columns="objoid,classoid,objsubid"/>
    </table>
    <table name="pg_description_o_c_o_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="objoid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="classoid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="objsubid" sqlType="int4" precision="10" scale="0" nullable="true" jdbcType="4"/>
    </table>
    <table name="pg_enum" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="enumtypid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="enumsortorder" sqlType="float4" precision="8" scale="8" nullable="false" jdbcType="7"/>
      <column name="enumlabel" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <index name="pg_enum_oid_index" unique="true" columns="oid"/>
      <index name="pg_enum_typid_label_index" unique="true" columns="enumtypid,enumlabel"/>
      <index name="pg_enum_typid_sortorder_index" unique="true" columns="enumtypid,enumsortorder"/>
    </table>
    <table name="pg_enum_oid_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="oid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_enum_typid_label_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="enumtypid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="enumlabel" sqlType="cstring" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
    </table>
    <table name="pg_enum_typid_sortorder_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="enumtypid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="enumsortorder" sqlType="float4" precision="8" scale="8" nullable="true" jdbcType="7"/>
    </table>
    <table name="pg_event_trigger" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="evtname" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="evtevent" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="evtowner" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="evtfoid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="evtenabled" sqlType="char" precision="1" scale="0" nullable="false" jdbcType="1"/>
      <column name="evttags" sqlType="_text" precision="2147483647" scale="0" nullable="true" jdbcType="2003"/>
      <index name="pg_event_trigger_evtname_index" unique="true" columns="evtname"/>
      <index name="pg_event_trigger_oid_index" unique="true" columns="oid"/>
    </table>
    <table name="pg_event_trigger_evtname_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="evtname" sqlType="cstring" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
    </table>
    <table name="pg_event_trigger_oid_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="oid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_extension" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="extname" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="extowner" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="extnamespace" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="extrelocatable" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="extversion" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="extconfig" sqlType="_oid" precision="10" scale="0" nullable="true" jdbcType="2003"/>
      <column name="extcondition" sqlType="_text" precision="2147483647" scale="0" nullable="true" jdbcType="2003"/>
      <index name="pg_extension_name_index" unique="true" columns="extname"/>
      <index name="pg_extension_oid_index" unique="true" columns="oid"/>
    </table>
    <table name="pg_extension_name_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="extname" sqlType="cstring" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
    </table>
    <table name="pg_extension_oid_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="oid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_foreign_data_wrapper" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="fdwname" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="fdwowner" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="fdwhandler" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="fdwvalidator" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="fdwacl" sqlType="_aclitem" precision="2147483647" scale="0" nullable="true" jdbcType="2003"/>
      <column name="fdwoptions" sqlType="_text" precision="2147483647" scale="0" nullable="true" jdbcType="2003"/>
      <index name="pg_foreign_data_wrapper_name_index" unique="true" columns="fdwname"/>
      <index name="pg_foreign_data_wrapper_oid_index" unique="true" columns="oid"/>
    </table>
    <table name="pg_foreign_data_wrapper_name_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="fdwname" sqlType="cstring" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
    </table>
    <table name="pg_foreign_data_wrapper_oid_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="oid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_foreign_server" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="srvname" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="srvowner" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="srvfdw" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="srvtype" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="srvversion" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="srvacl" sqlType="_aclitem" precision="2147483647" scale="0" nullable="true" jdbcType="2003"/>
      <column name="srvoptions" sqlType="_text" precision="2147483647" scale="0" nullable="true" jdbcType="2003"/>
      <index name="pg_foreign_server_name_index" unique="true" columns="srvname"/>
      <index name="pg_foreign_server_oid_index" unique="true" columns="oid"/>
    </table>
    <table name="pg_foreign_server_name_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="srvname" sqlType="cstring" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
    </table>
    <table name="pg_foreign_server_oid_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="oid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_foreign_table" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="ftrelid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="ftserver" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="ftoptions" sqlType="_text" precision="2147483647" scale="0" nullable="true" jdbcType="2003"/>
      <index name="pg_foreign_table_relid_index" unique="true" columns="ftrelid"/>
    </table>
    <table name="pg_foreign_table_relid_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="ftrelid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_group" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="groname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="grosysid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="grolist" sqlType="_oid" precision="10" scale="0" nullable="true" jdbcType="2003"/>
    </table>
    <table name="pg_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="indexrelid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="indrelid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="indnatts" sqlType="int2" precision="5" scale="0" nullable="false" jdbcType="5"/>
      <column name="indisunique" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="indisprimary" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="indisexclusion" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="indimmediate" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="indisclustered" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="indisvalid" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="indcheckxmin" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="indisready" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="indislive" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="indkey" sqlType="int2vector" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="indcollation" sqlType="oidvector" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="indclass" sqlType="oidvector" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="indoption" sqlType="int2vector" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="indexprs" sqlType="pg_node_tree" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
      <column name="indpred" sqlType="pg_node_tree" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
      <index name="pg_index_indexrelid_index" unique="true" columns="indexrelid"/>
      <index name="pg_index_indrelid_index" unique="false" columns="indrelid"/>
    </table>
    <table name="pg_index_indexrelid_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="indexrelid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_index_indrelid_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="indrelid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_indexes" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="schemaname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="tablename" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="indexname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="tablespace" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="indexdef" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
    </table>
    <table name="pg_inherits" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="inhrelid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="inhparent" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="inhseqno" sqlType="int4" precision="10" scale="0" nullable="false" jdbcType="4"/>
      <index name="pg_inherits_relid_seqno_index" unique="true" columns="inhrelid,inhseqno"/>
      <index name="pg_inherits_parent_index" unique="false" columns="inhparent"/>
    </table>
    <table name="pg_inherits_parent_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="inhparent" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_inherits_relid_seqno_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="inhrelid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="inhseqno" sqlType="int4" precision="10" scale="0" nullable="true" jdbcType="4"/>
    </table>
    <table name="pg_language" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="lanname" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="lanowner" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="lanispl" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="lanpltrusted" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="lanplcallfoid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="laninline" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="lanvalidator" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="lanacl" sqlType="_aclitem" precision="2147483647" scale="0" nullable="true" jdbcType="2003"/>
      <index name="pg_language_name_index" unique="true" columns="lanname"/>
      <index name="pg_language_oid_index" unique="true" columns="oid"/>
    </table>
    <table name="pg_language_name_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="lanname" sqlType="cstring" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
    </table>
    <table name="pg_language_oid_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="oid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_largeobject" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="loid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="pageno" sqlType="int4" precision="10" scale="0" nullable="false" jdbcType="4"/>
      <column name="data" sqlType="bytea" precision="2147483647" scale="0" nullable="true" jdbcType="-2"/>
      <index name="pg_largeobject_loid_pn_index" unique="true" columns="loid,pageno"/>
    </table>
    <table name="pg_largeobject_loid_pn_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="loid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="pageno" sqlType="int4" precision="10" scale="0" nullable="true" jdbcType="4"/>
    </table>
    <table name="pg_largeobject_metadata" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="lomowner" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="lomacl" sqlType="_aclitem" precision="2147483647" scale="0" nullable="true" jdbcType="2003"/>
      <index name="pg_largeobject_metadata_oid_index" unique="true" columns="oid"/>
    </table>
    <table name="pg_largeobject_metadata_oid_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="oid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_locks" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="locktype" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="database" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="relation" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="page" sqlType="int4" precision="10" scale="0" nullable="true" jdbcType="4"/>
      <column name="tuple" sqlType="int2" precision="5" scale="0" nullable="true" jdbcType="5"/>
      <column name="virtualxid" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="transactionid" sqlType="xid" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
      <column name="classid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="objid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="objsubid" sqlType="int2" precision="5" scale="0" nullable="true" jdbcType="5"/>
      <column name="virtualtransaction" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="pid" sqlType="int4" precision="10" scale="0" nullable="true" jdbcType="4"/>
      <column name="mode" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="granted" sqlType="bool" precision="1" scale="0" nullable="true" jdbcType="-7"/>
      <column name="fastpath" sqlType="bool" precision="1" scale="0" nullable="true" jdbcType="-7"/>
    </table>
    <table name="pg_matviews" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="schemaname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="matviewname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="matviewowner" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="tablespace" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="hasindexes" sqlType="bool" precision="1" scale="0" nullable="true" jdbcType="-7"/>
      <column name="ispopulated" sqlType="bool" precision="1" scale="0" nullable="true" jdbcType="-7"/>
      <column name="definition" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
    </table>
    <table name="pg_namespace" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="nspname" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="nspowner" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="nspacl" sqlType="_aclitem" precision="2147483647" scale="0" nullable="true" jdbcType="2003"/>
      <index name="pg_namespace_nspname_index" unique="true" columns="nspname"/>
      <index name="pg_namespace_oid_index" unique="true" columns="oid"/>
    </table>
    <table name="pg_namespace_nspname_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="nspname" sqlType="cstring" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
    </table>
    <table name="pg_namespace_oid_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="oid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_opclass" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="opcmethod" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="opcname" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="opcnamespace" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="opcowner" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="opcfamily" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="opcintype" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="opcdefault" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="opckeytype" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <index name="pg_opclass_am_name_nsp_index" unique="true" columns="opcmethod,opcname,opcnamespace"/>
      <index name="pg_opclass_oid_index" unique="true" columns="oid"/>
    </table>
    <table name="pg_opclass_am_name_nsp_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="opcmethod" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="opcname" sqlType="cstring" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
      <column name="opcnamespace" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_opclass_oid_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="oid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_operator" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="oprname" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="oprnamespace" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="oprowner" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="oprkind" sqlType="char" precision="1" scale="0" nullable="false" jdbcType="1"/>
      <column name="oprcanmerge" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="oprcanhash" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="oprleft" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="oprright" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="oprresult" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="oprcom" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="oprnegate" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="oprcode" sqlType="regproc" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="oprrest" sqlType="regproc" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="oprjoin" sqlType="regproc" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <index name="pg_operator_oid_index" unique="true" columns="oid"/>
      <index name="pg_operator_oprname_l_r_n_index" unique="true" columns="oprname,oprleft,oprright,oprnamespace"/>
    </table>
    <table name="pg_operator_oid_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="oid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_operator_oprname_l_r_n_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="oprname" sqlType="cstring" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
      <column name="oprleft" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="oprright" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="oprnamespace" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_opfamily" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="opfmethod" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="opfname" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="opfnamespace" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="opfowner" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <index name="pg_opfamily_am_name_nsp_index" unique="true" columns="opfmethod,opfname,opfnamespace"/>
      <index name="pg_opfamily_oid_index" unique="true" columns="oid"/>
    </table>
    <table name="pg_opfamily_am_name_nsp_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="opfmethod" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="opfname" sqlType="cstring" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
      <column name="opfnamespace" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_opfamily_oid_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="oid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_pltemplate" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="tmplname" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="tmpltrusted" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="tmpldbacreate" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="tmplhandler" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="tmplinline" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="tmplvalidator" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="tmpllibrary" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="tmplacl" sqlType="_aclitem" precision="2147483647" scale="0" nullable="true" jdbcType="2003"/>
      <index name="pg_pltemplate_name_index" unique="true" columns="tmplname"/>
    </table>
    <table name="pg_pltemplate_name_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="tmplname" sqlType="cstring" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
    </table>
    <table name="pg_prepared_statements" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="name" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="statement" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="prepare_time" sqlType="timestamptz" precision="35" scale="6" nullable="true" jdbcType="93"/>
      <column name="parameter_types" sqlType="_regtype" precision="2147483647" scale="0" nullable="true" jdbcType="2003"/>
      <column name="from_sql" sqlType="bool" precision="1" scale="0" nullable="true" jdbcType="-7"/>
    </table>
    <table name="pg_prepared_xacts" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="transaction" sqlType="xid" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
      <column name="gid" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="prepared" sqlType="timestamptz" precision="35" scale="6" nullable="true" jdbcType="93"/>
      <column name="owner" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="database" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
    </table>
    <table name="pg_proc" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="proname" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="pronamespace" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="proowner" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="prolang" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="procost" sqlType="float4" precision="8" scale="8" nullable="false" jdbcType="7"/>
      <column name="prorows" sqlType="float4" precision="8" scale="8" nullable="false" jdbcType="7"/>
      <column name="provariadic" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="protransform" sqlType="regproc" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="proisagg" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="proiswindow" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="prosecdef" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="proleakproof" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="proisstrict" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="proretset" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="provolatile" sqlType="char" precision="1" scale="0" nullable="false" jdbcType="1"/>
      <column name="pronargs" sqlType="int2" precision="5" scale="0" nullable="false" jdbcType="5"/>
      <column name="pronargdefaults" sqlType="int2" precision="5" scale="0" nullable="false" jdbcType="5"/>
      <column name="prorettype" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="proargtypes" sqlType="oidvector" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="proallargtypes" sqlType="_oid" precision="10" scale="0" nullable="true" jdbcType="2003"/>
      <column name="proargmodes" sqlType="_char" precision="1" scale="0" nullable="true" jdbcType="2003"/>
      <column name="proargnames" sqlType="_text" precision="2147483647" scale="0" nullable="true" jdbcType="2003"/>
      <column name="proargdefaults" sqlType="pg_node_tree" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
      <column name="prosrc" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="probin" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="proconfig" sqlType="_text" precision="2147483647" scale="0" nullable="true" jdbcType="2003"/>
      <column name="proacl" sqlType="_aclitem" precision="2147483647" scale="0" nullable="true" jdbcType="2003"/>
      <index name="pg_proc_oid_index" unique="true" columns="oid"/>
      <index name="pg_proc_proname_args_nsp_index" unique="true" columns="proname,proargtypes,pronamespace"/>
    </table>
    <table name="pg_proc_oid_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="oid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_proc_proname_args_nsp_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="proname" sqlType="cstring" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
      <column name="proargtypes" sqlType="oidvector" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
      <column name="pronamespace" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_range" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="rngtypid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="rngsubtype" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="rngcollation" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="rngsubopc" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="rngcanonical" sqlType="regproc" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="rngsubdiff" sqlType="regproc" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <index name="pg_range_rngtypid_index" unique="true" columns="rngtypid"/>
    </table>
    <table name="pg_range_rngtypid_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="rngtypid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_rewrite" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="rulename" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="ev_class" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="ev_attr" sqlType="int2" precision="5" scale="0" nullable="false" jdbcType="5"/>
      <column name="ev_type" sqlType="char" precision="1" scale="0" nullable="false" jdbcType="1"/>
      <column name="ev_enabled" sqlType="char" precision="1" scale="0" nullable="false" jdbcType="1"/>
      <column name="is_instead" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="ev_qual" sqlType="pg_node_tree" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
      <column name="ev_action" sqlType="pg_node_tree" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
      <index name="pg_rewrite_oid_index" unique="true" columns="oid"/>
      <index name="pg_rewrite_rel_rulename_index" unique="true" columns="ev_class,rulename"/>
    </table>
    <table name="pg_rewrite_oid_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="oid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_rewrite_rel_rulename_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="ev_class" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="rulename" sqlType="cstring" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
    </table>
    <table name="pg_roles" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="rolname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="rolsuper" sqlType="bool" precision="1" scale="0" nullable="true" jdbcType="-7"/>
      <column name="rolinherit" sqlType="bool" precision="1" scale="0" nullable="true" jdbcType="-7"/>
      <column name="rolcreaterole" sqlType="bool" precision="1" scale="0" nullable="true" jdbcType="-7"/>
      <column name="rolcreatedb" sqlType="bool" precision="1" scale="0" nullable="true" jdbcType="-7"/>
      <column name="rolcatupdate" sqlType="bool" precision="1" scale="0" nullable="true" jdbcType="-7"/>
      <column name="rolcanlogin" sqlType="bool" precision="1" scale="0" nullable="true" jdbcType="-7"/>
      <column name="rolreplication" sqlType="bool" precision="1" scale="0" nullable="true" jdbcType="-7"/>
      <column name="rolconnlimit" sqlType="int4" precision="10" scale="0" nullable="true" jdbcType="4"/>
      <column name="rolpassword" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="rolvaliduntil" sqlType="timestamptz" precision="35" scale="6" nullable="true" jdbcType="93"/>
      <column name="rolconfig" sqlType="_text" precision="2147483647" scale="0" nullable="true" jdbcType="2003"/>
      <column name="oid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_rules" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="schemaname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="tablename" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="rulename" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="definition" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
    </table>
    <table name="pg_seclabel" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="objoid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="classoid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="objsubid" sqlType="int4" precision="10" scale="0" nullable="false" jdbcType="4"/>
      <column name="provider" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="label" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <index name="pg_seclabel_object_index" unique="true" columns="objoid,classoid,objsubid,provider"/>
    </table>
    <table name="pg_seclabel_object_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="objoid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="classoid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="objsubid" sqlType="int4" precision="10" scale="0" nullable="true" jdbcType="4"/>
      <column name="provider" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
    </table>
    <table name="pg_seclabels" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="objoid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="classoid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="objsubid" sqlType="int4" precision="10" scale="0" nullable="true" jdbcType="4"/>
      <column name="objtype" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="objnamespace" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="objname" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="provider" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="label" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
    </table>
    <table name="pg_settings" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="name" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="setting" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="unit" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="category" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="short_desc" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="extra_desc" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="context" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="vartype" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="source" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="min_val" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="max_val" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="enumvals" sqlType="_text" precision="2147483647" scale="0" nullable="true" jdbcType="2003"/>
      <column name="boot_val" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="reset_val" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="sourcefile" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="sourceline" sqlType="int4" precision="10" scale="0" nullable="true" jdbcType="4"/>
    </table>
    <table name="pg_shadow" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="usename" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="usesysid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="usecreatedb" sqlType="bool" precision="1" scale="0" nullable="true" jdbcType="-7"/>
      <column name="usesuper" sqlType="bool" precision="1" scale="0" nullable="true" jdbcType="-7"/>
      <column name="usecatupd" sqlType="bool" precision="1" scale="0" nullable="true" jdbcType="-7"/>
      <column name="userepl" sqlType="bool" precision="1" scale="0" nullable="true" jdbcType="-7"/>
      <column name="passwd" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="valuntil" sqlType="abstime" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
      <column name="useconfig" sqlType="_text" precision="2147483647" scale="0" nullable="true" jdbcType="2003"/>
    </table>
    <table name="pg_shdepend" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="dbid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="classid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="objid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="objsubid" sqlType="int4" precision="10" scale="0" nullable="false" jdbcType="4"/>
      <column name="refclassid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="refobjid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="deptype" sqlType="char" precision="1" scale="0" nullable="false" jdbcType="1"/>
      <index name="pg_shdepend_depender_index" unique="false" columns="dbid,classid,objid,objsubid"/>
      <index name="pg_shdepend_reference_index" unique="false" columns="refclassid,refobjid"/>
    </table>
    <table name="pg_shdepend_depender_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="dbid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="classid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="objid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="objsubid" sqlType="int4" precision="10" scale="0" nullable="true" jdbcType="4"/>
    </table>
    <table name="pg_shdepend_reference_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="refclassid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="refobjid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_shdescription" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="objoid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="classoid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="description" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <index name="pg_shdescription_o_c_index" unique="true" columns="objoid,classoid"/>
    </table>
    <table name="pg_shdescription_o_c_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="objoid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="classoid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_shseclabel" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="objoid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="classoid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="provider" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="label" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <index name="pg_shseclabel_object_index" unique="true" columns="objoid,classoid,provider"/>
    </table>
    <table name="pg_shseclabel_object_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="objoid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="classoid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="provider" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
    </table>
    <table name="pg_stat_activity" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="datid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="datname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="pid" sqlType="int4" precision="10" scale="0" nullable="true" jdbcType="4"/>
      <column name="usesysid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="usename" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="application_name" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="client_addr" sqlType="inet" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
      <column name="client_hostname" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="client_port" sqlType="int4" precision="10" scale="0" nullable="true" jdbcType="4"/>
      <column name="backend_start" sqlType="timestamptz" precision="35" scale="6" nullable="true" jdbcType="93"/>
      <column name="xact_start" sqlType="timestamptz" precision="35" scale="6" nullable="true" jdbcType="93"/>
      <column name="query_start" sqlType="timestamptz" precision="35" scale="6" nullable="true" jdbcType="93"/>
      <column name="state_change" sqlType="timestamptz" precision="35" scale="6" nullable="true" jdbcType="93"/>
      <column name="waiting" sqlType="bool" precision="1" scale="0" nullable="true" jdbcType="-7"/>
      <column name="state" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="query" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
    </table>
    <table name="pg_stat_all_indexes" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="relid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="indexrelid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="schemaname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="relname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="indexrelname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="idx_scan" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="idx_tup_read" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="idx_tup_fetch" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_stat_all_tables" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="relid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="schemaname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="relname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="seq_scan" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="seq_tup_read" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="idx_scan" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="idx_tup_fetch" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="n_tup_ins" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="n_tup_upd" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="n_tup_del" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="n_tup_hot_upd" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="n_live_tup" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="n_dead_tup" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="last_vacuum" sqlType="timestamptz" precision="35" scale="6" nullable="true" jdbcType="93"/>
      <column name="last_autovacuum" sqlType="timestamptz" precision="35" scale="6" nullable="true" jdbcType="93"/>
      <column name="last_analyze" sqlType="timestamptz" precision="35" scale="6" nullable="true" jdbcType="93"/>
      <column name="last_autoanalyze" sqlType="timestamptz" precision="35" scale="6" nullable="true" jdbcType="93"/>
      <column name="vacuum_count" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="autovacuum_count" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="analyze_count" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="autoanalyze_count" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_stat_bgwriter" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="checkpoints_timed" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="checkpoints_req" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="checkpoint_write_time" sqlType="float8" precision="17" scale="17" nullable="true" jdbcType="8"/>
      <column name="checkpoint_sync_time" sqlType="float8" precision="17" scale="17" nullable="true" jdbcType="8"/>
      <column name="buffers_checkpoint" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="buffers_clean" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="maxwritten_clean" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="buffers_backend" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="buffers_backend_fsync" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="buffers_alloc" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="stats_reset" sqlType="timestamptz" precision="35" scale="6" nullable="true" jdbcType="93"/>
    </table>
    <table name="pg_stat_database" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="datid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="datname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="numbackends" sqlType="int4" precision="10" scale="0" nullable="true" jdbcType="4"/>
      <column name="xact_commit" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="xact_rollback" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="blks_read" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="blks_hit" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="tup_returned" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="tup_fetched" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="tup_inserted" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="tup_updated" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="tup_deleted" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="conflicts" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="temp_files" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="temp_bytes" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="deadlocks" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="blk_read_time" sqlType="float8" precision="17" scale="17" nullable="true" jdbcType="8"/>
      <column name="blk_write_time" sqlType="float8" precision="17" scale="17" nullable="true" jdbcType="8"/>
      <column name="stats_reset" sqlType="timestamptz" precision="35" scale="6" nullable="true" jdbcType="93"/>
    </table>
    <table name="pg_stat_database_conflicts" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="datid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="datname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="confl_tablespace" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="confl_lock" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="confl_snapshot" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="confl_bufferpin" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="confl_deadlock" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_stat_replication" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="pid" sqlType="int4" precision="10" scale="0" nullable="true" jdbcType="4"/>
      <column name="usesysid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="usename" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="application_name" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="client_addr" sqlType="inet" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
      <column name="client_hostname" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="client_port" sqlType="int4" precision="10" scale="0" nullable="true" jdbcType="4"/>
      <column name="backend_start" sqlType="timestamptz" precision="35" scale="6" nullable="true" jdbcType="93"/>
      <column name="state" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="sent_location" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="write_location" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="flush_location" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="replay_location" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="sync_priority" sqlType="int4" precision="10" scale="0" nullable="true" jdbcType="4"/>
      <column name="sync_state" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
    </table>
    <table name="pg_stat_sys_indexes" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="relid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="indexrelid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="schemaname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="relname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="indexrelname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="idx_scan" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="idx_tup_read" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="idx_tup_fetch" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_stat_sys_tables" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="relid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="schemaname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="relname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="seq_scan" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="seq_tup_read" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="idx_scan" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="idx_tup_fetch" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="n_tup_ins" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="n_tup_upd" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="n_tup_del" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="n_tup_hot_upd" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="n_live_tup" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="n_dead_tup" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="last_vacuum" sqlType="timestamptz" precision="35" scale="6" nullable="true" jdbcType="93"/>
      <column name="last_autovacuum" sqlType="timestamptz" precision="35" scale="6" nullable="true" jdbcType="93"/>
      <column name="last_analyze" sqlType="timestamptz" precision="35" scale="6" nullable="true" jdbcType="93"/>
      <column name="last_autoanalyze" sqlType="timestamptz" precision="35" scale="6" nullable="true" jdbcType="93"/>
      <column name="vacuum_count" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="autovacuum_count" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="analyze_count" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="autoanalyze_count" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_stat_user_functions" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="funcid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="schemaname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="funcname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="calls" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="total_time" sqlType="float8" precision="17" scale="17" nullable="true" jdbcType="8"/>
      <column name="self_time" sqlType="float8" precision="17" scale="17" nullable="true" jdbcType="8"/>
    </table>
    <table name="pg_stat_user_indexes" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="relid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="indexrelid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="schemaname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="relname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="indexrelname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="idx_scan" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="idx_tup_read" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="idx_tup_fetch" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_stat_user_tables" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="relid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="schemaname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="relname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="seq_scan" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="seq_tup_read" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="idx_scan" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="idx_tup_fetch" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="n_tup_ins" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="n_tup_upd" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="n_tup_del" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="n_tup_hot_upd" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="n_live_tup" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="n_dead_tup" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="last_vacuum" sqlType="timestamptz" precision="35" scale="6" nullable="true" jdbcType="93"/>
      <column name="last_autovacuum" sqlType="timestamptz" precision="35" scale="6" nullable="true" jdbcType="93"/>
      <column name="last_analyze" sqlType="timestamptz" precision="35" scale="6" nullable="true" jdbcType="93"/>
      <column name="last_autoanalyze" sqlType="timestamptz" precision="35" scale="6" nullable="true" jdbcType="93"/>
      <column name="vacuum_count" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="autovacuum_count" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="analyze_count" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="autoanalyze_count" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_stat_xact_all_tables" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="relid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="schemaname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="relname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="seq_scan" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="seq_tup_read" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="idx_scan" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="idx_tup_fetch" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="n_tup_ins" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="n_tup_upd" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="n_tup_del" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="n_tup_hot_upd" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_stat_xact_sys_tables" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="relid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="schemaname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="relname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="seq_scan" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="seq_tup_read" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="idx_scan" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="idx_tup_fetch" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="n_tup_ins" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="n_tup_upd" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="n_tup_del" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="n_tup_hot_upd" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_stat_xact_user_functions" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="funcid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="schemaname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="funcname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="calls" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="total_time" sqlType="float8" precision="17" scale="17" nullable="true" jdbcType="8"/>
      <column name="self_time" sqlType="float8" precision="17" scale="17" nullable="true" jdbcType="8"/>
    </table>
    <table name="pg_stat_xact_user_tables" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="relid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="schemaname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="relname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="seq_scan" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="seq_tup_read" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="idx_scan" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="idx_tup_fetch" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="n_tup_ins" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="n_tup_upd" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="n_tup_del" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="n_tup_hot_upd" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_statio_all_indexes" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="relid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="indexrelid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="schemaname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="relname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="indexrelname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="idx_blks_read" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="idx_blks_hit" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_statio_all_sequences" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="relid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="schemaname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="relname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="blks_read" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="blks_hit" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_statio_all_tables" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="relid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="schemaname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="relname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="heap_blks_read" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="heap_blks_hit" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="idx_blks_read" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="idx_blks_hit" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="toast_blks_read" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="toast_blks_hit" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="tidx_blks_read" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="tidx_blks_hit" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_statio_sys_indexes" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="relid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="indexrelid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="schemaname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="relname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="indexrelname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="idx_blks_read" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="idx_blks_hit" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_statio_sys_sequences" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="relid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="schemaname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="relname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="blks_read" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="blks_hit" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_statio_sys_tables" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="relid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="schemaname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="relname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="heap_blks_read" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="heap_blks_hit" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="idx_blks_read" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="idx_blks_hit" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="toast_blks_read" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="toast_blks_hit" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="tidx_blks_read" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="tidx_blks_hit" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_statio_user_indexes" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="relid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="indexrelid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="schemaname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="relname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="indexrelname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="idx_blks_read" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="idx_blks_hit" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_statio_user_sequences" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="relid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="schemaname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="relname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="blks_read" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="blks_hit" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_statio_user_tables" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="relid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="schemaname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="relname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="heap_blks_read" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="heap_blks_hit" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="idx_blks_read" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="idx_blks_hit" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="toast_blks_read" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="toast_blks_hit" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="tidx_blks_read" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
      <column name="tidx_blks_hit" sqlType="int8" precision="19" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_statistic" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="starelid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="staattnum" sqlType="int2" precision="5" scale="0" nullable="false" jdbcType="5"/>
      <column name="stainherit" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="stanullfrac" sqlType="float4" precision="8" scale="8" nullable="false" jdbcType="7"/>
      <column name="stawidth" sqlType="int4" precision="10" scale="0" nullable="false" jdbcType="4"/>
      <column name="stadistinct" sqlType="float4" precision="8" scale="8" nullable="false" jdbcType="7"/>
      <column name="stakind1" sqlType="int2" precision="5" scale="0" nullable="false" jdbcType="5"/>
      <column name="stakind2" sqlType="int2" precision="5" scale="0" nullable="false" jdbcType="5"/>
      <column name="stakind3" sqlType="int2" precision="5" scale="0" nullable="false" jdbcType="5"/>
      <column name="stakind4" sqlType="int2" precision="5" scale="0" nullable="false" jdbcType="5"/>
      <column name="stakind5" sqlType="int2" precision="5" scale="0" nullable="false" jdbcType="5"/>
      <column name="staop1" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="staop2" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="staop3" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="staop4" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="staop5" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="stanumbers1" sqlType="_float4" precision="8" scale="8" nullable="true" jdbcType="2003"/>
      <column name="stanumbers2" sqlType="_float4" precision="8" scale="8" nullable="true" jdbcType="2003"/>
      <column name="stanumbers3" sqlType="_float4" precision="8" scale="8" nullable="true" jdbcType="2003"/>
      <column name="stanumbers4" sqlType="_float4" precision="8" scale="8" nullable="true" jdbcType="2003"/>
      <column name="stanumbers5" sqlType="_float4" precision="8" scale="8" nullable="true" jdbcType="2003"/>
      <column name="stavalues1" sqlType="anyarray" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
      <column name="stavalues2" sqlType="anyarray" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
      <column name="stavalues3" sqlType="anyarray" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
      <column name="stavalues4" sqlType="anyarray" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
      <column name="stavalues5" sqlType="anyarray" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
      <index name="pg_statistic_relid_att_inh_index" unique="true" columns="starelid,staattnum,stainherit"/>
    </table>
    <table name="pg_statistic_relid_att_inh_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="starelid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="staattnum" sqlType="int2" precision="5" scale="0" nullable="true" jdbcType="5"/>
      <column name="stainherit" sqlType="bool" precision="1" scale="0" nullable="true" jdbcType="-7"/>
    </table>
    <table name="pg_stats" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="schemaname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="tablename" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="attname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="inherited" sqlType="bool" precision="1" scale="0" nullable="true" jdbcType="-7"/>
      <column name="null_frac" sqlType="float4" precision="8" scale="8" nullable="true" jdbcType="7"/>
      <column name="avg_width" sqlType="int4" precision="10" scale="0" nullable="true" jdbcType="4"/>
      <column name="n_distinct" sqlType="float4" precision="8" scale="8" nullable="true" jdbcType="7"/>
      <column name="most_common_vals" sqlType="anyarray" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
      <column name="most_common_freqs" sqlType="_float4" precision="8" scale="8" nullable="true" jdbcType="2003"/>
      <column name="histogram_bounds" sqlType="anyarray" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
      <column name="correlation" sqlType="float4" precision="8" scale="8" nullable="true" jdbcType="7"/>
      <column name="most_common_elems" sqlType="anyarray" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
      <column name="most_common_elem_freqs" sqlType="_float4" precision="8" scale="8" nullable="true" jdbcType="2003"/>
      <column name="elem_count_histogram" sqlType="_float4" precision="8" scale="8" nullable="true" jdbcType="2003"/>
    </table>
    <table name="pg_tables" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="schemaname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="tablename" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="tableowner" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="tablespace" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="hasindexes" sqlType="bool" precision="1" scale="0" nullable="true" jdbcType="-7"/>
      <column name="hasrules" sqlType="bool" precision="1" scale="0" nullable="true" jdbcType="-7"/>
      <column name="hastriggers" sqlType="bool" precision="1" scale="0" nullable="true" jdbcType="-7"/>
    </table>
    <table name="pg_tablespace" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="spcname" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="spcowner" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="spcacl" sqlType="_aclitem" precision="2147483647" scale="0" nullable="true" jdbcType="2003"/>
      <column name="spcoptions" sqlType="_text" precision="2147483647" scale="0" nullable="true" jdbcType="2003"/>
      <index name="pg_tablespace_oid_index" unique="true" columns="oid"/>
      <index name="pg_tablespace_spcname_index" unique="true" columns="spcname"/>
    </table>
    <table name="pg_tablespace_oid_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="oid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_tablespace_spcname_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="spcname" sqlType="cstring" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
    </table>
    <table name="pg_timezone_abbrevs" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="abbrev" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="utc_offset" sqlType="interval" precision="49" scale="6" nullable="true" jdbcType="1111"/>
      <column name="is_dst" sqlType="bool" precision="1" scale="0" nullable="true" jdbcType="-7"/>
    </table>
    <table name="pg_timezone_names" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="name" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="abbrev" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="utc_offset" sqlType="interval" precision="49" scale="6" nullable="true" jdbcType="1111"/>
      <column name="is_dst" sqlType="bool" precision="1" scale="0" nullable="true" jdbcType="-7"/>
    </table>
    <table name="pg_trigger" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="tgrelid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="tgname" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="tgfoid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="tgtype" sqlType="int2" precision="5" scale="0" nullable="false" jdbcType="5"/>
      <column name="tgenabled" sqlType="char" precision="1" scale="0" nullable="false" jdbcType="1"/>
      <column name="tgisinternal" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="tgconstrrelid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="tgconstrindid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="tgconstraint" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="tgdeferrable" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="tginitdeferred" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="tgnargs" sqlType="int2" precision="5" scale="0" nullable="false" jdbcType="5"/>
      <column name="tgattr" sqlType="int2vector" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="tgargs" sqlType="bytea" precision="2147483647" scale="0" nullable="true" jdbcType="-2"/>
      <column name="tgqual" sqlType="pg_node_tree" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
      <index name="pg_trigger_oid_index" unique="true" columns="oid"/>
      <index name="pg_trigger_tgrelid_tgname_index" unique="true" columns="tgrelid,tgname"/>
      <index name="pg_trigger_tgconstraint_index" unique="false" columns="tgconstraint"/>
    </table>
    <table name="pg_trigger_oid_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="oid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_trigger_tgconstraint_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="tgconstraint" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_trigger_tgrelid_tgname_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="tgrelid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="tgname" sqlType="cstring" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
    </table>
    <table name="pg_ts_config" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="cfgname" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="cfgnamespace" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="cfgowner" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="cfgparser" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <index name="pg_ts_config_cfgname_index" unique="true" columns="cfgname,cfgnamespace"/>
      <index name="pg_ts_config_oid_index" unique="true" columns="oid"/>
    </table>
    <table name="pg_ts_config_cfgname_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="cfgname" sqlType="cstring" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
      <column name="cfgnamespace" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_ts_config_map" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="mapcfg" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="maptokentype" sqlType="int4" precision="10" scale="0" nullable="false" jdbcType="4"/>
      <column name="mapseqno" sqlType="int4" precision="10" scale="0" nullable="false" jdbcType="4"/>
      <column name="mapdict" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <index name="pg_ts_config_map_index" unique="true" columns="mapcfg,maptokentype,mapseqno"/>
    </table>
    <table name="pg_ts_config_map_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="mapcfg" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="maptokentype" sqlType="int4" precision="10" scale="0" nullable="true" jdbcType="4"/>
      <column name="mapseqno" sqlType="int4" precision="10" scale="0" nullable="true" jdbcType="4"/>
    </table>
    <table name="pg_ts_config_oid_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="oid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_ts_dict" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="dictname" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="dictnamespace" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="dictowner" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="dicttemplate" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="dictinitoption" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <index name="pg_ts_dict_dictname_index" unique="true" columns="dictname,dictnamespace"/>
      <index name="pg_ts_dict_oid_index" unique="true" columns="oid"/>
    </table>
    <table name="pg_ts_dict_dictname_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="dictname" sqlType="cstring" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
      <column name="dictnamespace" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_ts_dict_oid_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="oid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_ts_parser" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="prsname" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="prsnamespace" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="prsstart" sqlType="regproc" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="prstoken" sqlType="regproc" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="prsend" sqlType="regproc" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="prsheadline" sqlType="regproc" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="prslextype" sqlType="regproc" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <index name="pg_ts_parser_oid_index" unique="true" columns="oid"/>
      <index name="pg_ts_parser_prsname_index" unique="true" columns="prsname,prsnamespace"/>
    </table>
    <table name="pg_ts_parser_oid_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="oid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_ts_parser_prsname_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="prsname" sqlType="cstring" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
      <column name="prsnamespace" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_ts_template" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="tmplname" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="tmplnamespace" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="tmplinit" sqlType="regproc" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="tmpllexize" sqlType="regproc" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <index name="pg_ts_template_oid_index" unique="true" columns="oid"/>
      <index name="pg_ts_template_tmplname_index" unique="true" columns="tmplname,tmplnamespace"/>
    </table>
    <table name="pg_ts_template_oid_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="oid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_ts_template_tmplname_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="tmplname" sqlType="cstring" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
      <column name="tmplnamespace" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_type" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="typname" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="typnamespace" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="typowner" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="typlen" sqlType="int2" precision="5" scale="0" nullable="false" jdbcType="5"/>
      <column name="typbyval" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="typtype" sqlType="char" precision="1" scale="0" nullable="false" jdbcType="1"/>
      <column name="typcategory" sqlType="char" precision="1" scale="0" nullable="false" jdbcType="1"/>
      <column name="typispreferred" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="typisdefined" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="typdelim" sqlType="char" precision="1" scale="0" nullable="false" jdbcType="1"/>
      <column name="typrelid" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="typelem" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="typarray" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="typinput" sqlType="regproc" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="typoutput" sqlType="regproc" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="typreceive" sqlType="regproc" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="typsend" sqlType="regproc" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="typmodin" sqlType="regproc" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="typmodout" sqlType="regproc" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="typanalyze" sqlType="regproc" precision="2147483647" scale="0" nullable="false" jdbcType="1111"/>
      <column name="typalign" sqlType="char" precision="1" scale="0" nullable="false" jdbcType="1"/>
      <column name="typstorage" sqlType="char" precision="1" scale="0" nullable="false" jdbcType="1"/>
      <column name="typnotnull" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="typbasetype" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="typtypmod" sqlType="int4" precision="10" scale="0" nullable="false" jdbcType="4"/>
      <column name="typndims" sqlType="int4" precision="10" scale="0" nullable="false" jdbcType="4"/>
      <column name="typcollation" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="typdefaultbin" sqlType="pg_node_tree" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
      <column name="typdefault" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="typacl" sqlType="_aclitem" precision="2147483647" scale="0" nullable="true" jdbcType="2003"/>
      <index name="pg_type_oid_index" unique="true" columns="oid"/>
      <index name="pg_type_typname_nsp_index" unique="true" columns="typname,typnamespace"/>
    </table>
    <table name="pg_type_oid_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="oid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_type_typname_nsp_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="typname" sqlType="cstring" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
      <column name="typnamespace" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_user" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="usename" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="usesysid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="usecreatedb" sqlType="bool" precision="1" scale="0" nullable="true" jdbcType="-7"/>
      <column name="usesuper" sqlType="bool" precision="1" scale="0" nullable="true" jdbcType="-7"/>
      <column name="usecatupd" sqlType="bool" precision="1" scale="0" nullable="true" jdbcType="-7"/>
      <column name="userepl" sqlType="bool" precision="1" scale="0" nullable="true" jdbcType="-7"/>
      <column name="passwd" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="valuntil" sqlType="abstime" precision="2147483647" scale="0" nullable="true" jdbcType="1111"/>
      <column name="useconfig" sqlType="_text" precision="2147483647" scale="0" nullable="true" jdbcType="2003"/>
    </table>
    <table name="pg_user_mapping" schema="pg_catalog" catalog="gamedb" type="SYSTEM TABLE">
      <column name="umuser" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="umserver" sqlType="oid" precision="10" scale="0" nullable="false" jdbcType="-5"/>
      <column name="umoptions" sqlType="_text" precision="2147483647" scale="0" nullable="true" jdbcType="2003"/>
      <index name="pg_user_mapping_oid_index" unique="true" columns="oid"/>
      <index name="pg_user_mapping_user_server_index" unique="true" columns="umuser,umserver"/>
    </table>
    <table name="pg_user_mapping_oid_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="oid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_user_mapping_user_server_index" schema="pg_catalog" catalog="gamedb" type="SYSTEM INDEX">
      <column name="umuser" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="umserver" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
    </table>
    <table name="pg_user_mappings" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="umid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="srvid" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="srvname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="umuser" sqlType="oid" precision="10" scale="0" nullable="true" jdbcType="-5"/>
      <column name="usename" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="umoptions" sqlType="_text" precision="2147483647" scale="0" nullable="true" jdbcType="2003"/>
    </table>
    <table name="pg_views" schema="pg_catalog" catalog="gamedb" type="SYSTEM VIEW">
      <column name="schemaname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="viewname" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="viewowner" sqlType="name" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="definition" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
    </table>
    <table name="auth_group" schema="public" catalog="gamedb" type="TABLE">
      <column name="id" sqlType="serial" precision="10" scale="0" nullable="false" jdbcType="4" def="bmV4dHZhbCgnYXV0aF9ncm91cF9pZF9zZXEnOjpyZWdjbGFzcyk=" autoIncrement="true"/>
      <column name="name" sqlType="varchar" precision="80" scale="0" nullable="false" jdbcType="12"/>
      <primary-key name="auth_group_pkey" columns="id"/>
      <exported-key name="auth_group_permissio_group_id_6c62162b38bd0270_fk_auth_group_id" table="auth_group_permissions" schema="public" catalog="gamedb" columns="group_id"/>
      <exported-key name="auth_user_groups_group_id_1e336807873897d5_fk_auth_group_id" table="auth_user_groups" schema="public" catalog="gamedb" columns="group_id"/>
      <index name="auth_group_name_key" unique="true" columns="name"/>
    </table>
    <table name="auth_group_id_seq" schema="public" catalog="gamedb" type="SEQUENCE">
      <column name="sequence_name" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="last_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="start_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="increment_by" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="max_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="min_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="cache_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="log_cnt" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="is_cycled" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="is_called" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
    </table>
    <table name="auth_group_permissions" schema="public" catalog="gamedb" type="TABLE">
      <column name="id" sqlType="serial" precision="10" scale="0" nullable="false" jdbcType="4" def="bmV4dHZhbCgnYXV0aF9ncm91cF9wZXJtaXNzaW9uc19pZF9zZXEnOjpyZWdjbGFzcyk=" autoIncrement="true"/>
      <column name="group_id" sqlType="int4" precision="10" scale="0" nullable="false" jdbcType="4"/>
      <column name="permission_id" sqlType="int4" precision="10" scale="0" nullable="false" jdbcType="4"/>
      <primary-key name="auth_group_permissions_pkey" columns="id"/>
      <foreign-key name="auth_group_permissio_group_id_6c62162b38bd0270_fk_auth_group_id" columns="group_id" ref-table="auth_group" ref-schema="public" ref-catalog="" ref-columns="id" update-rule="3" delete-rule="3" deferrability="1"/>
      <foreign-key name="auth_group_permission_id_3358a0dcd412aa39_fk_auth_permission_id" columns="permission_id" ref-table="auth_permission" ref-schema="public" ref-catalog="" ref-columns="id" update-rule="3" delete-rule="3" deferrability="1"/>
      <index name="auth_group_permissions_group_id_permission_id_key" unique="true" columns="group_id,permission_id"/>
      <index name="auth_group_permissions_0e939a4f" unique="false" columns="group_id"/>
      <index name="auth_group_permissions_8373b171" unique="false" columns="permission_id"/>
    </table>
    <table name="auth_group_permissions_id_seq" schema="public" catalog="gamedb" type="SEQUENCE">
      <column name="sequence_name" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="last_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="start_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="increment_by" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="max_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="min_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="cache_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="log_cnt" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="is_cycled" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="is_called" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
    </table>
    <table name="auth_permission" schema="public" catalog="gamedb" type="TABLE">
      <column name="id" sqlType="serial" precision="10" scale="0" nullable="false" jdbcType="4" def="bmV4dHZhbCgnYXV0aF9wZXJtaXNzaW9uX2lkX3NlcSc6OnJlZ2NsYXNzKQ==" autoIncrement="true"/>
      <column name="name" sqlType="varchar" precision="50" scale="0" nullable="false" jdbcType="12"/>
      <column name="content_type_id" sqlType="int4" precision="10" scale="0" nullable="false" jdbcType="4"/>
      <column name="codename" sqlType="varchar" precision="100" scale="0" nullable="false" jdbcType="12"/>
      <primary-key name="auth_permission_pkey" columns="id"/>
      <foreign-key name="auth_content_type_id_55d0471b376bb934_fk_django_content_type_id" columns="content_type_id" ref-table="django_content_type" ref-schema="public" ref-catalog="" ref-columns="id" update-rule="3" delete-rule="3" deferrability="1"/>
      <exported-key name="auth_group_permission_id_3358a0dcd412aa39_fk_auth_permission_id" table="auth_group_permissions" schema="public" catalog="gamedb" columns="permission_id"/>
      <exported-key name="auth_user__permission_id_4212bd4d5c5d2e4d_fk_auth_permission_id" table="auth_user_user_permissions" schema="public" catalog="gamedb" columns="permission_id"/>
      <index name="auth_permission_content_type_id_codename_key" unique="true" columns="content_type_id,codename"/>
      <index name="auth_permission_417f1b1c" unique="false" columns="content_type_id"/>
    </table>
    <table name="auth_permission_id_seq" schema="public" catalog="gamedb" type="SEQUENCE">
      <column name="sequence_name" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="last_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="start_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="increment_by" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="max_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="min_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="cache_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="log_cnt" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="is_cycled" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="is_called" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
    </table>
    <table name="auth_user" schema="public" catalog="gamedb" type="TABLE">
      <column name="id" sqlType="serial" precision="10" scale="0" nullable="false" jdbcType="4" def="bmV4dHZhbCgnYXV0aF91c2VyX2lkX3NlcSc6OnJlZ2NsYXNzKQ==" autoIncrement="true"/>
      <column name="password" sqlType="varchar" precision="128" scale="0" nullable="false" jdbcType="12"/>
      <column name="last_login" sqlType="timestamptz" precision="35" scale="6" nullable="false" jdbcType="93"/>
      <column name="is_superuser" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="username" sqlType="varchar" precision="30" scale="0" nullable="false" jdbcType="12"/>
      <column name="first_name" sqlType="varchar" precision="30" scale="0" nullable="false" jdbcType="12"/>
      <column name="last_name" sqlType="varchar" precision="30" scale="0" nullable="false" jdbcType="12"/>
      <column name="email" sqlType="varchar" precision="75" scale="0" nullable="false" jdbcType="12"/>
      <column name="is_staff" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="is_active" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="date_joined" sqlType="timestamptz" precision="35" scale="6" nullable="false" jdbcType="93"/>
      <primary-key name="auth_user_pkey" columns="id"/>
      <exported-key name="auth_user_groups_user_id_1532bf8f49e39eab_fk_auth_user_id" table="auth_user_groups" schema="public" catalog="gamedb" columns="user_id"/>
      <exported-key name="auth_user_user_permiss_user_id_22cde9e7259e11a2_fk_auth_user_id" table="auth_user_user_permissions" schema="public" catalog="gamedb" columns="user_id"/>
      <exported-key name="django_admin_log_user_id_1177642a1fea7647_fk_auth_user_id" table="django_admin_log" schema="public" catalog="gamedb" columns="user_id"/>
      <index name="auth_user_username_key" unique="true" columns="username"/>
    </table>
    <table name="auth_user_groups" schema="public" catalog="gamedb" type="TABLE">
      <column name="id" sqlType="serial" precision="10" scale="0" nullable="false" jdbcType="4" def="bmV4dHZhbCgnYXV0aF91c2VyX2dyb3Vwc19pZF9zZXEnOjpyZWdjbGFzcyk=" autoIncrement="true"/>
      <column name="user_id" sqlType="int4" precision="10" scale="0" nullable="false" jdbcType="4"/>
      <column name="group_id" sqlType="int4" precision="10" scale="0" nullable="false" jdbcType="4"/>
      <primary-key name="auth_user_groups_pkey" columns="id"/>
      <foreign-key name="auth_user_groups_group_id_1e336807873897d5_fk_auth_group_id" columns="group_id" ref-table="auth_group" ref-schema="public" ref-catalog="" ref-columns="id" update-rule="3" delete-rule="3" deferrability="1"/>
      <foreign-key name="auth_user_groups_user_id_1532bf8f49e39eab_fk_auth_user_id" columns="user_id" ref-table="auth_user" ref-schema="public" ref-catalog="" ref-columns="id" update-rule="3" delete-rule="3" deferrability="1"/>
      <index name="auth_user_groups_user_id_group_id_key" unique="true" columns="user_id,group_id"/>
      <index name="auth_user_groups_0e939a4f" unique="false" columns="group_id"/>
      <index name="auth_user_groups_e8701ad4" unique="false" columns="user_id"/>
    </table>
    <table name="auth_user_groups_id_seq" schema="public" catalog="gamedb" type="SEQUENCE">
      <column name="sequence_name" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="last_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="start_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="increment_by" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="max_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="min_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="cache_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="log_cnt" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="is_cycled" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="is_called" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
    </table>
    <table name="auth_user_id_seq" schema="public" catalog="gamedb" type="SEQUENCE">
      <column name="sequence_name" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="last_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="start_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="increment_by" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="max_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="min_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="cache_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="log_cnt" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="is_cycled" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="is_called" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
    </table>
    <table name="auth_user_user_permissions" schema="public" catalog="gamedb" type="TABLE">
      <column name="id" sqlType="serial" precision="10" scale="0" nullable="false" jdbcType="4" def="bmV4dHZhbCgnYXV0aF91c2VyX3VzZXJfcGVybWlzc2lvbnNfaWRfc2VxJzo6cmVnY2xhc3Mp" autoIncrement="true"/>
      <column name="user_id" sqlType="int4" precision="10" scale="0" nullable="false" jdbcType="4"/>
      <column name="permission_id" sqlType="int4" precision="10" scale="0" nullable="false" jdbcType="4"/>
      <primary-key name="auth_user_user_permissions_pkey" columns="id"/>
      <foreign-key name="auth_user__permission_id_4212bd4d5c5d2e4d_fk_auth_permission_id" columns="permission_id" ref-table="auth_permission" ref-schema="public" ref-catalog="" ref-columns="id" update-rule="3" delete-rule="3" deferrability="1"/>
      <foreign-key name="auth_user_user_permiss_user_id_22cde9e7259e11a2_fk_auth_user_id" columns="user_id" ref-table="auth_user" ref-schema="public" ref-catalog="" ref-columns="id" update-rule="3" delete-rule="3" deferrability="1"/>
      <index name="auth_user_user_permissions_user_id_permission_id_key" unique="true" columns="user_id,permission_id"/>
      <index name="auth_user_user_permissions_8373b171" unique="false" columns="permission_id"/>
      <index name="auth_user_user_permissions_e8701ad4" unique="false" columns="user_id"/>
    </table>
    <table name="auth_user_user_permissions_id_seq" schema="public" catalog="gamedb" type="SEQUENCE">
      <column name="sequence_name" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="last_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="start_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="increment_by" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="max_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="min_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="cache_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="log_cnt" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="is_cycled" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="is_called" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
    </table>
    <table name="django_admin_log" schema="public" catalog="gamedb" type="TABLE">
      <column name="id" sqlType="serial" precision="10" scale="0" nullable="false" jdbcType="4" def="bmV4dHZhbCgnZGphbmdvX2FkbWluX2xvZ19pZF9zZXEnOjpyZWdjbGFzcyk=" autoIncrement="true"/>
      <column name="action_time" sqlType="timestamptz" precision="35" scale="6" nullable="false" jdbcType="93"/>
      <column name="object_id" sqlType="text" precision="2147483647" scale="0" nullable="true" jdbcType="12"/>
      <column name="object_repr" sqlType="varchar" precision="200" scale="0" nullable="false" jdbcType="12"/>
      <column name="action_flag" sqlType="int2" precision="5" scale="0" nullable="false" jdbcType="5"/>
      <column name="change_message" sqlType="text" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="content_type_id" sqlType="int4" precision="10" scale="0" nullable="true" jdbcType="4"/>
      <column name="user_id" sqlType="int4" precision="10" scale="0" nullable="false" jdbcType="4"/>
      <primary-key name="django_admin_log_pkey" columns="id"/>
      <foreign-key name="django_admin_log_user_id_1177642a1fea7647_fk_auth_user_id" columns="user_id" ref-table="auth_user" ref-schema="public" ref-catalog="" ref-columns="id" update-rule="3" delete-rule="3" deferrability="1"/>
      <foreign-key name="djan_content_type_id_4490d90bbe270225_fk_django_content_type_id" columns="content_type_id" ref-table="django_content_type" ref-schema="public" ref-catalog="" ref-columns="id" update-rule="3" delete-rule="3" deferrability="1"/>
      <index name="django_admin_log_417f1b1c" unique="false" columns="content_type_id"/>
      <index name="django_admin_log_e8701ad4" unique="false" columns="user_id"/>
    </table>
    <table name="django_admin_log_id_seq" schema="public" catalog="gamedb" type="SEQUENCE">
      <column name="sequence_name" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="last_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="start_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="increment_by" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="max_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="min_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="cache_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="log_cnt" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="is_cycled" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="is_called" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
    </table>
    <table name="django_content_type" schema="public" catalog="gamedb" type="TABLE">
      <column name="id" sqlType="serial" precision="10" scale="0" nullable="false" jdbcType="4" def="bmV4dHZhbCgnZGphbmdvX2NvbnRlbnRfdHlwZV9pZF9zZXEnOjpyZWdjbGFzcyk=" autoIncrement="true"/>
      <column name="name" sqlType="varchar" precision="100" scale="0" nullable="false" jdbcType="12"/>
      <column name="app_label" sqlType="varchar" precision="100" scale="0" nullable="false" jdbcType="12"/>
      <column name="model" sqlType="varchar" precision="100" scale="0" nullable="false" jdbcType="12"/>
      <primary-key name="django_content_type_pkey" columns="id"/>
      <exported-key name="auth_content_type_id_55d0471b376bb934_fk_django_content_type_id" table="auth_permission" schema="public" catalog="gamedb" columns="content_type_id"/>
      <exported-key name="djan_content_type_id_4490d90bbe270225_fk_django_content_type_id" table="django_admin_log" schema="public" catalog="gamedb" columns="content_type_id"/>
      <index name="django_content_type_app_label_226cfddd84f685f7_uniq" unique="true" columns="app_label,model"/>
    </table>
    <table name="django_content_type_id_seq" schema="public" catalog="gamedb" type="SEQUENCE">
      <column name="sequence_name" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="last_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="start_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="increment_by" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="max_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="min_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="cache_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="log_cnt" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="is_cycled" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="is_called" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
    </table>
    <table name="django_migrations" schema="public" catalog="gamedb" type="TABLE">
      <column name="id" sqlType="serial" precision="10" scale="0" nullable="false" jdbcType="4" def="bmV4dHZhbCgnZGphbmdvX21pZ3JhdGlvbnNfaWRfc2VxJzo6cmVnY2xhc3Mp" autoIncrement="true"/>
      <column name="app" sqlType="varchar" precision="255" scale="0" nullable="false" jdbcType="12"/>
      <column name="name" sqlType="varchar" precision="255" scale="0" nullable="false" jdbcType="12"/>
      <column name="applied" sqlType="timestamptz" precision="35" scale="6" nullable="false" jdbcType="93"/>
      <primary-key name="django_migrations_pkey" columns="id"/>
    </table>
    <table name="django_migrations_id_seq" schema="public" catalog="gamedb" type="SEQUENCE">
      <column name="sequence_name" sqlType="name" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="last_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="start_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="increment_by" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="max_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="min_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="cache_value" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="log_cnt" sqlType="int8" precision="19" scale="0" nullable="false" jdbcType="-5"/>
      <column name="is_cycled" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
      <column name="is_called" sqlType="bool" precision="1" scale="0" nullable="false" jdbcType="-7"/>
    </table>
    <table name="django_session" schema="public" catalog="gamedb" type="TABLE">
      <column name="session_key" sqlType="varchar" precision="40" scale="0" nullable="false" jdbcType="12"/>
      <column name="session_data" sqlType="text" precision="2147483647" scale="0" nullable="false" jdbcType="12"/>
      <column name="expire_date" sqlType="timestamptz" precision="35" scale="6" nullable="false" jdbcType="93"/>
      <primary-key name="django_session_pkey" columns="session_key"/>
      <index name="django_session_de54fa62" unique="false" columns="expire_date"/>
    </table>
    <procedure name="_pg_char_max_length" schema="information_schema" catalog="gamedb" type="2">
      <prototype>
        <parameter name="typid" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="typmod" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="_pg_char_octet_length" schema="information_schema" catalog="gamedb" type="2">
      <prototype>
        <parameter name="typid" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="typmod" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="_pg_datetime_precision" schema="information_schema" catalog="gamedb" type="2">
      <prototype>
        <parameter name="typid" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="typmod" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="_pg_expandarray" schema="information_schema" catalog="gamedb" type="2">
      <prototype>
        <parameter name="" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="x" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="4" index="2"/>
        <parameter name="n" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="4" index="3"/>
      </prototype>
    </procedure>
    <procedure name="_pg_index_position" schema="information_schema" catalog="gamedb" type="2">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="_pg_interval_type" schema="information_schema" catalog="gamedb" type="2">
      <prototype>
        <parameter name="typid" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="mod" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="_pg_keysequal" schema="information_schema" catalog="gamedb" type="2">
      <prototype>
        <parameter name="$1" sqlType="_int2" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="$2" sqlType="_int2" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="_pg_numeric_precision" schema="information_schema" catalog="gamedb" type="2">
      <prototype>
        <parameter name="typid" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="typmod" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="_pg_numeric_precision_radix" schema="information_schema" catalog="gamedb" type="2">
      <prototype>
        <parameter name="typid" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="typmod" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="_pg_numeric_scale" schema="information_schema" catalog="gamedb" type="2">
      <prototype>
        <parameter name="typid" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="typmod" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="_pg_truetypid" schema="information_schema" catalog="gamedb" type="2">
      <prototype>
        <parameter name="$1" sqlType="pg_attribute" precision="0" scale="0" nullable="true" jdbcType="2002" type="1" index="1"/>
        <parameter name="$2" sqlType="pg_type" precision="0" scale="0" nullable="true" jdbcType="2002" type="1" index="2"/>
        <parameter name="returnValue" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="_pg_truetypmod" schema="information_schema" catalog="gamedb" type="2">
      <prototype>
        <parameter name="$1" sqlType="pg_attribute" precision="0" scale="0" nullable="true" jdbcType="2002" type="1" index="1"/>
        <parameter name="$2" sqlType="pg_type" precision="0" scale="0" nullable="true" jdbcType="2002" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="RI_FKey_cascade_del" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVmZXJlbnRpYWwgaW50ZWdyaXR5IE9OIERFTEVURSBDQVNDQURF">
      <prototype>
        <parameter name="returnValue" sqlType="trigger" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="RI_FKey_cascade_upd" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVmZXJlbnRpYWwgaW50ZWdyaXR5IE9OIFVQREFURSBDQVNDQURF">
      <prototype>
        <parameter name="returnValue" sqlType="trigger" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="RI_FKey_check_ins" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVmZXJlbnRpYWwgaW50ZWdyaXR5IEZPUkVJR04gS0VZIC4uLiBSRUZFUkVOQ0VT">
      <prototype>
        <parameter name="returnValue" sqlType="trigger" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="RI_FKey_check_upd" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVmZXJlbnRpYWwgaW50ZWdyaXR5IEZPUkVJR04gS0VZIC4uLiBSRUZFUkVOQ0VT">
      <prototype>
        <parameter name="returnValue" sqlType="trigger" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="RI_FKey_noaction_del" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVmZXJlbnRpYWwgaW50ZWdyaXR5IE9OIERFTEVURSBOTyBBQ1RJT04=">
      <prototype>
        <parameter name="returnValue" sqlType="trigger" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="RI_FKey_noaction_upd" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVmZXJlbnRpYWwgaW50ZWdyaXR5IE9OIFVQREFURSBOTyBBQ1RJT04=">
      <prototype>
        <parameter name="returnValue" sqlType="trigger" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="RI_FKey_restrict_del" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVmZXJlbnRpYWwgaW50ZWdyaXR5IE9OIERFTEVURSBSRVNUUklDVA==">
      <prototype>
        <parameter name="returnValue" sqlType="trigger" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="RI_FKey_restrict_upd" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVmZXJlbnRpYWwgaW50ZWdyaXR5IE9OIFVQREFURSBSRVNUUklDVA==">
      <prototype>
        <parameter name="returnValue" sqlType="trigger" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="RI_FKey_setdefault_del" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVmZXJlbnRpYWwgaW50ZWdyaXR5IE9OIERFTEVURSBTRVQgREVGQVVMVA==">
      <prototype>
        <parameter name="returnValue" sqlType="trigger" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="RI_FKey_setdefault_upd" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVmZXJlbnRpYWwgaW50ZWdyaXR5IE9OIFVQREFURSBTRVQgREVGQVVMVA==">
      <prototype>
        <parameter name="returnValue" sqlType="trigger" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="RI_FKey_setnull_del" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVmZXJlbnRpYWwgaW50ZWdyaXR5IE9OIERFTEVURSBTRVQgTlVMTA==">
      <prototype>
        <parameter name="returnValue" sqlType="trigger" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="RI_FKey_setnull_upd" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVmZXJlbnRpYWwgaW50ZWdyaXR5IE9OIFVQREFURSBTRVQgTlVMTA==">
      <prototype>
        <parameter name="returnValue" sqlType="trigger" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="abbrev" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWJicmV2aWF0ZWQgZGlzcGxheSBvZiBjaWRyIHZhbHVl">
      <prototype>
        <parameter name="$1" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="cidr" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="abs" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWJzb2x1dGUgdmFsdWU=">
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="abstime" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCB0aW1lc3RhbXAgdG8gYWJzdGltZQ==">
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="returnValue" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="returnValue" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="abstimeeq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="abstimege" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="abstimegt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="abstimein" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="abstimele" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="abstimelt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="abstimene" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="abstimeout" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="abstimerecv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="abstimesend" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="aclcontains" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udGFpbnM=">
      <prototype>
        <parameter name="$1" sqlType="_aclitem" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="$2" sqlType="aclitem" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="acldefault" schema="pg_catalog" catalog="gamedb" type="2" remarks="VE9ETw==">
      <prototype>
        <parameter name="$1" sqlType="char" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="_aclitem" precision="0" scale="0" nullable="true" jdbcType="2003" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="aclexplode" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCBBQ0wgaXRlbSBhcnJheSB0byB0YWJsZSwgZm9yIHVzZSBieSBpbmZvcm1hdGlvbiBzY2hlbWE=">
      <prototype>
        <parameter name="acl" sqlType="_aclitem" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="grantor" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="4" index="2"/>
        <parameter name="grantee" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="4" index="3"/>
        <parameter name="privilege_type" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="4"/>
        <parameter name="is_grantable" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="4" index="5"/>
      </prototype>
    </procedure>
    <procedure name="aclinsert" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWRkL3VwZGF0ZSBBQ0wgaXRlbQ==">
      <prototype>
        <parameter name="$1" sqlType="_aclitem" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="$2" sqlType="aclitem" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="_aclitem" precision="0" scale="0" nullable="true" jdbcType="2003" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="aclitemeq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="aclitem" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="aclitem" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="aclitemin" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="aclitem" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="aclitemout" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="aclitem" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="aclremove" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVtb3ZlIEFDTCBpdGVt">
      <prototype>
        <parameter name="$1" sqlType="_aclitem" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="$2" sqlType="aclitem" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="_aclitem" precision="0" scale="0" nullable="true" jdbcType="2003" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="acos" schema="pg_catalog" catalog="gamedb" type="2" remarks="YXJjY29zaW5l">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="age" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZGF0ZSBkaWZmZXJlbmNlIGZyb20gdG9kYXkgcHJlc2VydmluZyBtb250aHMgYW5kIHllYXJz">
      <prototype>
        <parameter name="$1" sqlType="xid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="returnValue" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="returnValue" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="any_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="any" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="any_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="any" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="anyarray_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="anyarray_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="anyarray_recv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="anyarray_send" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="anyelement_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="anyelement_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="anyenum_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="anyenum" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="anyenum_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="anyenum" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="anynonarray_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="anynonarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="anynonarray_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="anynonarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="anyrange_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="anyrange_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="anytextcat" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgfHwgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="anynonarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="area" schema="pg_catalog" catalog="gamedb" type="2" remarks="YXJlYSBvZiBhIGNsb3NlZCBwYXRo">
      <prototype>
        <parameter name="$1" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="areajoinsel" schema="pg_catalog" catalog="gamedb" type="2" remarks="am9pbiBzZWxlY3Rpdml0eSBmb3IgYXJlYS1jb21wYXJpc29uIG9wZXJhdG9ycw==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="areasel" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVzdHJpY3Rpb24gc2VsZWN0aXZpdHkgZm9yIGFyZWEtY29tcGFyaXNvbiBvcGVyYXRvcnM=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="4"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="array_agg" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29uY2F0ZW5hdGUgYWdncmVnYXRlIGlucHV0IGludG8gYW4gYXJyYXk=">
      <prototype>
        <parameter name="$1" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="array_agg_finalfn" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIGZpbmFsIGZ1bmN0aW9u">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="array_agg_transfn" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIHRyYW5zaXRpb24gZnVuY3Rpb24=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="array_append" schema="pg_catalog" catalog="gamedb" type="2" remarks="YXBwZW5kIGVsZW1lbnQgb250byBlbmQgb2YgYXJyYXk=">
      <prototype>
        <parameter name="$1" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="array_cat" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgfHwgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="array_dims" schema="pg_catalog" catalog="gamedb" type="2" remarks="YXJyYXkgZGltZW5zaW9ucw==">
      <prototype>
        <parameter name="$1" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="array_eq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="array_fill" schema="pg_catalog" catalog="gamedb" type="2" remarks="YXJyYXkgY29uc3RydWN0b3Igd2l0aCB2YWx1ZQ==">
      <prototype>
        <parameter name="$1" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="_int4" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="2"/>
        <parameter name="returnValue" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="_int4" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="2"/>
        <parameter name="$3" sqlType="_int4" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="3"/>
        <parameter name="returnValue" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="array_ge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="array_gt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="array_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="array_larger" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGFyZ2VyIG9mIHR3bw==">
      <prototype>
        <parameter name="$1" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="array_le" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="array_length" schema="pg_catalog" catalog="gamedb" type="2" remarks="YXJyYXkgbGVuZ3Ro">
      <prototype>
        <parameter name="$1" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="array_lower" schema="pg_catalog" catalog="gamedb" type="2" remarks="YXJyYXkgbG93ZXIgZGltZW5zaW9u">
      <prototype>
        <parameter name="$1" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="array_lt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="array_ndims" schema="pg_catalog" catalog="gamedb" type="2" remarks="bnVtYmVyIG9mIGFycmF5IGRpbWVuc2lvbnM=">
      <prototype>
        <parameter name="$1" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="array_ne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="array_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="array_prepend" schema="pg_catalog" catalog="gamedb" type="2" remarks="cHJlcGVuZCBlbGVtZW50IG9udG8gZnJvbnQgb2YgYXJyYXk=">
      <prototype>
        <parameter name="$1" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="array_recv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="array_remove" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVtb3ZlIGFueSBvY2N1cnJlbmNlcyBvZiBhbiBlbGVtZW50IGZyb20gYW4gYXJyYXk=">
      <prototype>
        <parameter name="$1" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="array_replace" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVwbGFjZSBhbnkgb2NjdXJyZW5jZXMgb2YgYW4gZWxlbWVudCBpbiBhbiBhcnJheQ==">
      <prototype>
        <parameter name="$1" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="returnValue" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="array_send" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="array_smaller" schema="pg_catalog" catalog="gamedb" type="2" remarks="c21hbGxlciBvZiB0d28=">
      <prototype>
        <parameter name="$1" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="array_to_json" schema="pg_catalog" catalog="gamedb" type="2" remarks="bWFwIGFycmF5IHRvIGpzb24gd2l0aCBvcHRpb25hbCBwcmV0dHkgcHJpbnRpbmc=">
      <prototype>
        <parameter name="$1" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="json" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="json" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="array_to_string" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29uY2F0ZW5hdGUgYXJyYXkgZWxlbWVudHMsIHVzaW5nIGRlbGltaXRlciwgaW50byB0ZXh0">
      <prototype>
        <parameter name="$1" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="array_typanalyze" schema="pg_catalog" catalog="gamedb" type="2" remarks="YXJyYXkgdHlwYW5hbHl6ZQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="array_upper" schema="pg_catalog" catalog="gamedb" type="2" remarks="YXJyYXkgdXBwZXIgZGltZW5zaW9u">
      <prototype>
        <parameter name="$1" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="arraycontained" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPEAgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="arraycontains" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgQD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="arraycontjoinsel" schema="pg_catalog" catalog="gamedb" type="2" remarks="am9pbiBzZWxlY3Rpdml0eSBmb3IgYXJyYXktY29udGFpbm1lbnQgb3BlcmF0b3Jz">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="arraycontsel" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVzdHJpY3Rpb24gc2VsZWN0aXZpdHkgZm9yIGFycmF5LWNvbnRhaW5tZW50IG9wZXJhdG9ycw==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="4"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="arrayoverlap" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgJiYgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="ascii" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCBmaXJzdCBjaGFyIHRvIGludDQ=">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="ascii_to_mic" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgU1FMX0FTQ0lJIHRvIE1VTEVfSU5URVJOQUw=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="ascii_to_utf8" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgU1FMX0FTQ0lJIHRvIFVURjg=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="asin" schema="pg_catalog" catalog="gamedb" type="2" remarks="YXJjc2luZQ==">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="atan" schema="pg_catalog" catalog="gamedb" type="2" remarks="YXJjdGFuZ2VudA==">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="atan2" schema="pg_catalog" catalog="gamedb" type="2" remarks="YXJjdGFuZ2VudCwgdHdvIGFyZ3VtZW50cw==">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="avg" schema="pg_catalog" catalog="gamedb" type="2" remarks="dGhlIGF2ZXJhZ2UgKGFyaXRobWV0aWMgbWVhbikgYXMgaW50ZXJ2YWwgb2YgYWxsIGludGVydmFsIHZhbHVlcw==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="big5_to_euc_tw" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgQklHNSB0byBFVUNfVFc=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="big5_to_mic" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgQklHNSB0byBNVUxFX0lOVEVSTkFM">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="big5_to_utf8" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgQklHNSB0byBVVEY4">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bit" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCBpbnQ4IHRvIGJpdHN0cmluZw==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bit_and" schema="pg_catalog" catalog="gamedb" type="2" remarks="Yml0d2lzZS1hbmQgYml0IGFnZ3JlZ2F0ZQ==">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bit_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bit_length" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVuZ3RoIGluIGJpdHM=">
      <prototype>
        <parameter name="$1" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bit_or" schema="pg_catalog" catalog="gamedb" type="2" remarks="Yml0d2lzZS1vciBiaXQgYWdncmVnYXRl">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bit_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bit_recv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bit_send" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bitand" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgJiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="$2" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bitcat" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgfHwgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="varbit" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="varbit" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="varbit" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bitcmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="$2" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="biteq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="$2" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bitge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="$2" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bitgt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="$2" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bitle" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="$2" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bitlt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="$2" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bitne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="$2" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bitnot" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgfiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bitor" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgfCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="$2" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bitshiftleft" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPDwgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bitshiftright" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bittypmodin" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9PIHR5cG1vZA==">
      <prototype>
        <parameter name="$1" sqlType="_cstring" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bittypmodout" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9PIHR5cG1vZA==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bitxor" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgIyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="$2" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bool" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCBpbnQ0IHRvIGJvb2xlYW4=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bool_and" schema="pg_catalog" catalog="gamedb" type="2" remarks="Ym9vbGVhbi1hbmQgYWdncmVnYXRl">
      <prototype>
        <parameter name="$1" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bool_or" schema="pg_catalog" catalog="gamedb" type="2" remarks="Ym9vbGVhbi1vciBhZ2dyZWdhdGU=">
      <prototype>
        <parameter name="$1" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="booland_statefunc" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIHRyYW5zaXRpb24gZnVuY3Rpb24=">
      <prototype>
        <parameter name="$1" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="$2" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="booleq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="$2" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="boolge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="$2" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="boolgt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="$2" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="boolin" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="boolle" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="$2" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="boollt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="$2" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="boolne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="$2" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="boolor_statefunc" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIHRyYW5zaXRpb24gZnVuY3Rpb24=">
      <prototype>
        <parameter name="$1" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="$2" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="boolout" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="boolrecv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="boolsend" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="box" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCBjaXJjbGUgdG8gYm94">
      <prototype>
        <parameter name="$1" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="box_above" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgfD4+IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="box_above_eq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPl4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="box_add" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="box_below" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPDx8IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="box_below_eq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPF4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="box_center" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgQEAgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="box_contain" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgQD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="box_contain_pt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgQD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="box_contained" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPEAgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="box_distance" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPC0+IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="box_div" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="box_eq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="box_ge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="box_gt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="box_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="box_intersect" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgIyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="box_le" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="box_left" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPDwgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="box_lt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="box_mul" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="box_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="box_overabove" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgfCY+IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="box_overbelow" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgJjx8IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="box_overlap" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgJiYgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="box_overleft" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgJjwgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="box_overright" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgJj4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="box_recv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="box_right" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="box_same" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2Ygfj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="box_send" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="box_sub" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bpchar" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCBjaGFyIHRvIGNoYXIobik=">
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="char" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bpchar_larger" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGFyZ2VyIG9mIHR3bw==">
      <prototype>
        <parameter name="$1" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="$2" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bpchar_pattern_ge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2Ygfj49fiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="$2" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bpchar_pattern_gt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2Ygfj5+IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="$2" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bpchar_pattern_le" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2Ygfjw9fiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="$2" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bpchar_pattern_lt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2Ygfjx+IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="$2" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bpchar_smaller" schema="pg_catalog" catalog="gamedb" type="2" remarks="c21hbGxlciBvZiB0d28=">
      <prototype>
        <parameter name="$1" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="$2" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bpcharcmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="$2" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bpchareq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="$2" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bpcharge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="$2" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bpchargt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="$2" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bpchariclike" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2Ygfn4qIG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bpcharicnlike" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgIX5+KiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bpcharicregexeq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2Ygfiogb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bpcharicregexne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgIX4qIG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bpcharin" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bpcharle" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="$2" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bpcharlike" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2Ygfn4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bpcharlt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="$2" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bpcharne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="$2" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bpcharnlike" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgIX5+IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bpcharout" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bpcharrecv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bpcharregexeq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgfiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bpcharregexne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgIX4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bpcharsend" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bpchartypmodin" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9PIHR5cG1vZA==">
      <prototype>
        <parameter name="$1" sqlType="_cstring" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bpchartypmodout" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9PIHR5cG1vZA==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="broadcast" schema="pg_catalog" catalog="gamedb" type="2" remarks="YnJvYWRjYXN0IGFkZHJlc3Mgb2YgbmV0d29yaw==">
      <prototype>
        <parameter name="$1" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btabstimecmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btarraycmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btbeginscan" schema="pg_catalog" catalog="gamedb" type="2" remarks="YnRyZWUoaW50ZXJuYWwp">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btboolcmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="$2" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btbpchar_pattern_cmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="$2" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btbuild" schema="pg_catalog" catalog="gamedb" type="2" remarks="YnRyZWUoaW50ZXJuYWwp">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btbuildempty" schema="pg_catalog" catalog="gamedb" type="2" remarks="YnRyZWUoaW50ZXJuYWwp">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btbulkdelete" schema="pg_catalog" catalog="gamedb" type="2" remarks="YnRyZWUoaW50ZXJuYWwp">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btcanreturn" schema="pg_catalog" catalog="gamedb" type="2" remarks="YnRyZWUoaW50ZXJuYWwp">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btcharcmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="char" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="$2" sqlType="char" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btcostestimate" schema="pg_catalog" catalog="gamedb" type="2" remarks="YnRyZWUoaW50ZXJuYWwp">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="$6" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="6"/>
        <parameter name="$7" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="7"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btendscan" schema="pg_catalog" catalog="gamedb" type="2" remarks="YnRyZWUoaW50ZXJuYWwp">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btfloat48cmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btfloat4cmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="$2" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btfloat4sortsupport" schema="pg_catalog" catalog="gamedb" type="2" remarks="c29ydCBzdXBwb3J0">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btfloat84cmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btfloat8cmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btfloat8sortsupport" schema="pg_catalog" catalog="gamedb" type="2" remarks="c29ydCBzdXBwb3J0">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btgetbitmap" schema="pg_catalog" catalog="gamedb" type="2" remarks="YnRyZWUoaW50ZXJuYWwp">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btgettuple" schema="pg_catalog" catalog="gamedb" type="2" remarks="YnRyZWUoaW50ZXJuYWwp">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btinsert" schema="pg_catalog" catalog="gamedb" type="2" remarks="YnRyZWUoaW50ZXJuYWwp">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="$6" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="6"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btint24cmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btint28cmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btint2cmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btint2sortsupport" schema="pg_catalog" catalog="gamedb" type="2" remarks="c29ydCBzdXBwb3J0">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btint42cmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btint48cmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btint4cmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btint4sortsupport" schema="pg_catalog" catalog="gamedb" type="2" remarks="c29ydCBzdXBwb3J0">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btint82cmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btint84cmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btint8cmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btint8sortsupport" schema="pg_catalog" catalog="gamedb" type="2" remarks="c29ydCBzdXBwb3J0">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btmarkpos" schema="pg_catalog" catalog="gamedb" type="2" remarks="YnRyZWUoaW50ZXJuYWwp">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btnamecmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btnamesortsupport" schema="pg_catalog" catalog="gamedb" type="2" remarks="c29ydCBzdXBwb3J0">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btoidcmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btoidsortsupport" schema="pg_catalog" catalog="gamedb" type="2" remarks="c29ydCBzdXBwb3J0">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btoidvectorcmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="oidvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oidvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btoptions" schema="pg_catalog" catalog="gamedb" type="2" remarks="YnRyZWUoaW50ZXJuYWwp">
      <prototype>
        <parameter name="$1" sqlType="_text" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="$2" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btrecordcmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="record" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="record" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btreltimecmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="reltime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="reltime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btrescan" schema="pg_catalog" catalog="gamedb" type="2" remarks="YnRyZWUoaW50ZXJuYWwp">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btrestrpos" schema="pg_catalog" catalog="gamedb" type="2" remarks="YnRyZWUoaW50ZXJuYWwp">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btrim" schema="pg_catalog" catalog="gamedb" type="2" remarks="dHJpbSBzcGFjZXMgZnJvbSBib3RoIGVuZHMgb2Ygc3RyaW5n">
      <prototype>
        <parameter name="$1" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="1"/>
        <parameter name="$2" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bttext_pattern_cmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bttextcmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bttidcmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="tid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bttintervalcmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="tinterval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tinterval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="btvacuumcleanup" schema="pg_catalog" catalog="gamedb" type="2" remarks="YnRyZWUoaW50ZXJuYWwp">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bytea_string_agg_finalfn" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIGZpbmFsIGZ1bmN0aW9u">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bytea_string_agg_transfn" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIHRyYW5zaXRpb24gZnVuY3Rpb24=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="2"/>
        <parameter name="$3" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="3"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="byteacat" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgfHwgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="1"/>
        <parameter name="$2" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="byteacmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="1"/>
        <parameter name="$2" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="byteaeq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="1"/>
        <parameter name="$2" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="byteage" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="1"/>
        <parameter name="$2" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="byteagt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="1"/>
        <parameter name="$2" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="byteain" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="byteale" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="1"/>
        <parameter name="$2" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bytealike" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2Ygfn4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="1"/>
        <parameter name="$2" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bytealt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="1"/>
        <parameter name="$2" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="byteane" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="1"/>
        <parameter name="$2" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="byteanlike" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgIX5+IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="1"/>
        <parameter name="$2" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="byteaout" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="bytearecv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="byteasend" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cash_cmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cash_div_cash" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cash_div_flt4" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cash_div_flt8" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cash_div_int2" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cash_div_int4" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cash_eq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cash_ge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cash_gt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cash_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cash_le" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cash_lt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cash_mi" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cash_mul_flt4" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cash_mul_flt8" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cash_mul_int2" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cash_mul_int4" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cash_ne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cash_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cash_pl" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cash_recv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cash_send" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cash_words" schema="pg_catalog" catalog="gamedb" type="2" remarks="b3V0cHV0IG1vbmV5IGFtb3VudCBhcyB3b3Jkcw==">
      <prototype>
        <parameter name="$1" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cashlarger" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGFyZ2VyIG9mIHR3bw==">
      <prototype>
        <parameter name="$1" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cashsmaller" schema="pg_catalog" catalog="gamedb" type="2" remarks="c21hbGxlciBvZiB0d28=">
      <prototype>
        <parameter name="$1" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cbrt" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y3ViZSByb290">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="ceil" schema="pg_catalog" catalog="gamedb" type="2" remarks="c21hbGxlc3QgaW50ZWdlciA+PSB2YWx1ZQ==">
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="ceiling" schema="pg_catalog" catalog="gamedb" type="2" remarks="c21hbGxlc3QgaW50ZWdlciA+PSB2YWx1ZQ==">
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="center" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y2VudGVyIG9m">
      <prototype>
        <parameter name="$1" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="char" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCB0ZXh0IHRvIGNoYXI=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="char" precision="0" scale="0" nullable="true" jdbcType="1" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="char" precision="0" scale="0" nullable="true" jdbcType="1" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="char_length" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y2hhcmFjdGVyIGxlbmd0aA==">
      <prototype>
        <parameter name="$1" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="character_length" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y2hhcmFjdGVyIGxlbmd0aA==">
      <prototype>
        <parameter name="$1" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="chareq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="char" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="$2" sqlType="char" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="charge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="char" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="$2" sqlType="char" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="chargt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="char" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="$2" sqlType="char" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="charin" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="char" precision="0" scale="0" nullable="true" jdbcType="1" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="charle" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="char" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="$2" sqlType="char" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="charlt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="char" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="$2" sqlType="char" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="charne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="char" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="$2" sqlType="char" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="charout" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="char" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="charrecv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="char" precision="0" scale="0" nullable="true" jdbcType="1" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="charsend" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="char" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="chr" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCBpbnQ0IHRvIGNoYXI=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cideq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="cid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="cid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cidin" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cid" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cidout" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cidr" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCBpbmV0IHRvIGNpZHI=">
      <prototype>
        <parameter name="$1" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cidr" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cidr_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cidr" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cidr_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cidr" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cidr_recv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cidr" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cidr_send" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cidr" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cidrecv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cid" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cidsend" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="circle" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCBib3ggdG8gY2lyY2xl">
      <prototype>
        <parameter name="$1" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="circle_above" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgfD4+IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="circle_add_pt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="circle_below" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPDx8IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="circle_center" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgQEAgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="circle_contain" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgQD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="circle_contain_pt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgQD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="circle_contained" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPEAgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="circle_distance" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPC0+IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="circle_div_pt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="circle_eq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="circle_ge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="circle_gt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="circle_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="circle_le" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="circle_left" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPDwgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="circle_lt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="circle_mul_pt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="circle_ne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="circle_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="circle_overabove" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgfCY+IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="circle_overbelow" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgJjx8IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="circle_overlap" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgJiYgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="circle_overleft" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgJjwgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="circle_overright" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgJj4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="circle_recv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="circle_right" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="circle_same" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2Ygfj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="circle_send" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="circle_sub_pt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="clock_timestamp" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y3VycmVudCBjbG9jayB0aW1l">
      <prototype>
        <parameter name="returnValue" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="close_lb" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgIyMgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="line" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="close_ls" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgIyMgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="line" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="close_lseg" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgIyMgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="close_pb" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgIyMgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="close_pl" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgIyMgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="line" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="close_ps" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgIyMgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="close_sb" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgIyMgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="close_sl" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgIyMgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="line" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="col_description" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2V0IGRlc2NyaXB0aW9uIGZvciB0YWJsZSBjb2x1bW4=">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="concat" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29uY2F0ZW5hdGUgdmFsdWVz">
      <prototype>
        <parameter name="$1" sqlType="any" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="concat_ws" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29uY2F0ZW5hdGUgdmFsdWVzIHdpdGggc2VwYXJhdG9ycw==">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="any" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="contjoinsel" schema="pg_catalog" catalog="gamedb" type="2" remarks="am9pbiBzZWxlY3Rpdml0eSBmb3IgY29udGFpbm1lbnQgY29tcGFyaXNvbiBvcGVyYXRvcnM=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="contsel" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVzdHJpY3Rpb24gc2VsZWN0aXZpdHkgZm9yIGNvbnRhaW5tZW50IGNvbXBhcmlzb24gb3BlcmF0b3Jz">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="4"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="convert" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCBzdHJpbmcgd2l0aCBzcGVjaWZpZWQgZW5jb2RpbmcgbmFtZXM=">
      <prototype>
        <parameter name="$1" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="1"/>
        <parameter name="$2" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="convert_from" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCBzdHJpbmcgd2l0aCBzcGVjaWZpZWQgc291cmNlIGVuY29kaW5nIG5hbWU=">
      <prototype>
        <parameter name="$1" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="1"/>
        <parameter name="$2" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="convert_to" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCBzdHJpbmcgd2l0aCBzcGVjaWZpZWQgZGVzdGluYXRpb24gZW5jb2RpbmcgbmFtZQ==">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="corr" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29ycmVsYXRpb24gY29lZmZpY2llbnQ=">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cos" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29zaW5l">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cot" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y290YW5nZW50">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="count" schema="pg_catalog" catalog="gamedb" type="2" remarks="bnVtYmVyIG9mIGlucHV0IHJvd3M=">
      <prototype>
        <parameter name="$1" sqlType="any" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="covar_pop" schema="pg_catalog" catalog="gamedb" type="2" remarks="cG9wdWxhdGlvbiBjb3ZhcmlhbmNl">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="covar_samp" schema="pg_catalog" catalog="gamedb" type="2" remarks="c2FtcGxlIGNvdmFyaWFuY2U=">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cstring_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cstring_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cstring_recv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cstring_send" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cume_dist" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZnJhY3Rpb25hbCByb3cgbnVtYmVyIHdpdGhpbiBwYXJ0aXRpb24=">
      <prototype>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="current_database" schema="pg_catalog" catalog="gamedb" type="2" remarks="bmFtZSBvZiB0aGUgY3VycmVudCBkYXRhYmFzZQ==">
      <prototype>
        <parameter name="returnValue" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="current_query" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2V0IHRoZSBjdXJyZW50bHkgZXhlY3V0aW5nIHF1ZXJ5">
      <prototype>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="current_schema" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y3VycmVudCBzY2hlbWEgbmFtZQ==">
      <prototype>
        <parameter name="returnValue" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="current_schemas" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y3VycmVudCBzY2hlbWEgc2VhcmNoIGxpc3Q=">
      <prototype>
        <parameter name="$1" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="returnValue" sqlType="_name" precision="0" scale="0" nullable="true" jdbcType="2003" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="current_setting" schema="pg_catalog" catalog="gamedb" type="2" remarks="U0hPVyBYIGFzIGEgZnVuY3Rpb24=">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="current_user" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y3VycmVudCB1c2VyIG5hbWU=">
      <prototype>
        <parameter name="returnValue" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="currtid" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGF0ZXN0IHRpZCBvZiBhIHR1cGxl">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="tid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="tid" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="currtid2" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGF0ZXN0IHRpZCBvZiBhIHR1cGxl">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="tid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="tid" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="currval" schema="pg_catalog" catalog="gamedb" type="2" remarks="c2VxdWVuY2UgY3VycmVudCB2YWx1ZQ==">
      <prototype>
        <parameter name="$1" sqlType="regclass" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cursor_to_xml" schema="pg_catalog" catalog="gamedb" type="2" remarks="bWFwIHJvd3MgZnJvbSBjdXJzb3IgdG8gWE1M">
      <prototype>
        <parameter name="cursor" sqlType="refcursor" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="count" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="nulls" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="3"/>
        <parameter name="tableforest" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="4"/>
        <parameter name="targetns" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="5"/>
        <parameter name="returnValue" sqlType="xml" precision="0" scale="0" nullable="true" jdbcType="2009" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="cursor_to_xmlschema" schema="pg_catalog" catalog="gamedb" type="2" remarks="bWFwIGN1cnNvciBzdHJ1Y3R1cmUgdG8gWE1MIFNjaGVtYQ==">
      <prototype>
        <parameter name="cursor" sqlType="refcursor" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="nulls" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="tableforest" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="3"/>
        <parameter name="targetns" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="4"/>
        <parameter name="returnValue" sqlType="xml" precision="0" scale="0" nullable="true" jdbcType="2009" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="database_to_xml" schema="pg_catalog" catalog="gamedb" type="2" remarks="bWFwIGRhdGFiYXNlIGNvbnRlbnRzIHRvIFhNTA==">
      <prototype>
        <parameter name="nulls" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="tableforest" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="targetns" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="xml" precision="0" scale="0" nullable="true" jdbcType="2009" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="database_to_xml_and_xmlschema" schema="pg_catalog" catalog="gamedb" type="2" remarks="bWFwIGRhdGFiYXNlIGNvbnRlbnRzIGFuZCBzdHJ1Y3R1cmUgdG8gWE1MIGFuZCBYTUwgU2NoZW1h">
      <prototype>
        <parameter name="nulls" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="tableforest" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="targetns" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="xml" precision="0" scale="0" nullable="true" jdbcType="2009" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="database_to_xmlschema" schema="pg_catalog" catalog="gamedb" type="2" remarks="bWFwIGRhdGFiYXNlIHN0cnVjdHVyZSB0byBYTUwgU2NoZW1h">
      <prototype>
        <parameter name="nulls" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="tableforest" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="targetns" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="xml" precision="0" scale="0" nullable="true" jdbcType="2009" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="date" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCB0aW1lc3RhbXAgdG8gZGF0ZQ==">
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="returnValue" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="returnValue" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="date_cmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="$2" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="date_cmp_timestamp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="date_cmp_timestamptz" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="date_eq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="$2" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="date_eq_timestamp" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="date_eq_timestamptz" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="date_ge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="$2" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="date_ge_timestamp" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="date_ge_timestamptz" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="date_gt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="$2" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="date_gt_timestamp" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="date_gt_timestamptz" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="date_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="date_larger" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGFyZ2VyIG9mIHR3bw==">
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="$2" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="2"/>
        <parameter name="returnValue" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="date_le" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="$2" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="date_le_timestamp" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="date_le_timestamptz" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="date_lt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="$2" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="date_lt_timestamp" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="date_lt_timestamptz" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="date_mi" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="$2" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="date_mi_interval" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="$2" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="date_mii" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="date_ne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="$2" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="date_ne_timestamp" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="date_ne_timestamptz" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="date_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="date_part" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZXh0cmFjdCBmaWVsZCBmcm9tIHRpbWVzdGFtcA==">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="reltime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="date_pl_interval" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="$2" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="date_pli" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="date_recv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="date_send" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="date_smaller" schema="pg_catalog" catalog="gamedb" type="2" remarks="c21hbGxlciBvZiB0d28=">
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="$2" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="2"/>
        <parameter name="returnValue" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="date_sortsupport" schema="pg_catalog" catalog="gamedb" type="2" remarks="c29ydCBzdXBwb3J0">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="date_trunc" schema="pg_catalog" catalog="gamedb" type="2" remarks="dHJ1bmNhdGUgdGltZXN0YW1wIHRvIHNwZWNpZmllZCB1bml0cw==">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="daterange" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZGF0ZXJhbmdlIGNvbnN0cnVjdG9y">
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="$2" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="2"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="$2" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
      </prototype>
    </procedure>
    <procedure name="daterange_canonical" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCBhIGRhdGUgcmFuZ2UgdG8gY2Fub25pY2FsIGZvcm0=">
      <prototype>
        <parameter name="$1" sqlType="daterange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
      </prototype>
    </procedure>
    <procedure name="daterange_subdiff" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZmxvYXQ4IGRpZmZlcmVuY2Ugb2YgdHdvIGRhdGUgdmFsdWVz">
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="$2" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="datetime_pl" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="$2" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="2"/>
        <parameter name="returnValue" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="datetimetz_pl" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="$2" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="2"/>
        <parameter name="returnValue" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="dcbrt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgfHwvIG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="decode" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCBhc2NpaS1lbmNvZGVkIHRleHQgc3RyaW5nIGludG8gYnl0ZWEgdmFsdWU=">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="degrees" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmFkaWFucyB0byBkZWdyZWVz">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="dense_rank" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZWdlciByYW5rIHdpdGhvdXQgZ2Fwcw==">
      <prototype>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="dexp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bmF0dXJhbCBleHBvbmVudGlhbCAoZV54KQ==">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="diagonal" schema="pg_catalog" catalog="gamedb" type="2" remarks="Ym94IGRpYWdvbmFs">
      <prototype>
        <parameter name="$1" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="diameter" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZGlhbWV0ZXIgb2YgY2lyY2xl">
      <prototype>
        <parameter name="$1" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="dispell_init" schema="pg_catalog" catalog="gamedb" type="2" remarks="KGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="dispell_lexize" schema="pg_catalog" catalog="gamedb" type="2" remarks="KGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="dist_cpoly" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPC0+IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="dist_lb" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPC0+IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="line" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="dist_pb" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPC0+IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="dist_pc" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPC0+IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="dist_pl" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPC0+IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="line" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="dist_ppath" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPC0+IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="dist_ps" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPC0+IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="dist_sb" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPC0+IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="dist_sl" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPC0+IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="line" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="div" schema="pg_catalog" catalog="gamedb" type="2" remarks="dHJ1bmMoeC95KQ==">
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="$2" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="dlog1" schema="pg_catalog" catalog="gamedb" type="2" remarks="bmF0dXJhbCBsb2dhcml0aG0=">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="dlog10" schema="pg_catalog" catalog="gamedb" type="2" remarks="YmFzZSAxMCBsb2dhcml0aG0=">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="domain_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="any" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="domain_recv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="any" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="dpow" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgXiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="dround" schema="pg_catalog" catalog="gamedb" type="2" remarks="cm91bmQgdG8gbmVhcmVzdCBpbnRlZ2Vy">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="dsimple_init" schema="pg_catalog" catalog="gamedb" type="2" remarks="KGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="dsimple_lexize" schema="pg_catalog" catalog="gamedb" type="2" remarks="KGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="dsnowball_init" schema="pg_catalog" catalog="gamedb" type="2">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="dsnowball_lexize" schema="pg_catalog" catalog="gamedb" type="2">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="dsqrt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgfC8gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="dsynonym_init" schema="pg_catalog" catalog="gamedb" type="2" remarks="KGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="dsynonym_lexize" schema="pg_catalog" catalog="gamedb" type="2" remarks="KGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="dtrunc" schema="pg_catalog" catalog="gamedb" type="2" remarks="dHJ1bmNhdGUgdG8gaW50ZWdlcg==">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="elem_contained_by_range" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPEAgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="encode" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCBieXRlYSB2YWx1ZSBpbnRvIHNvbWUgYXNjaWktb25seSB0ZXh0IHN0cmluZw==">
      <prototype>
        <parameter name="$1" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="enum_cmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="anyenum" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyenum" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="enum_eq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="anyenum" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyenum" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="enum_first" schema="pg_catalog" catalog="gamedb" type="2" remarks="Zmlyc3QgdmFsdWUgb2YgdGhlIGlucHV0IGVudW0gdHlwZQ==">
      <prototype>
        <parameter name="$1" sqlType="anyenum" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="anyenum" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="enum_ge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="anyenum" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyenum" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="enum_gt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="anyenum" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyenum" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="enum_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="anyenum" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="enum_larger" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGFyZ2VyIG9mIHR3bw==">
      <prototype>
        <parameter name="$1" sqlType="anyenum" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyenum" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="anyenum" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="enum_last" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGFzdCB2YWx1ZSBvZiB0aGUgaW5wdXQgZW51bSB0eXBl">
      <prototype>
        <parameter name="$1" sqlType="anyenum" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="anyenum" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="enum_le" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="anyenum" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyenum" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="enum_lt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="anyenum" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyenum" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="enum_ne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="anyenum" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyenum" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="enum_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="anyenum" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="enum_range" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmFuZ2Ugb2YgdGhlIGdpdmVuIGVudW0gdHlwZSwgYXMgYW4gb3JkZXJlZCBhcnJheQ==">
      <prototype>
        <parameter name="$1" sqlType="anyenum" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyenum" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="anyenum" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="enum_recv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="anyenum" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="enum_send" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="anyenum" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="enum_smaller" schema="pg_catalog" catalog="gamedb" type="2" remarks="c21hbGxlciBvZiB0d28=">
      <prototype>
        <parameter name="$1" sqlType="anyenum" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyenum" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="anyenum" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="eqjoinsel" schema="pg_catalog" catalog="gamedb" type="2" remarks="am9pbiBzZWxlY3Rpdml0eSBvZiA9IGFuZCByZWxhdGVkIG9wZXJhdG9ycw==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="eqsel" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVzdHJpY3Rpb24gc2VsZWN0aXZpdHkgb2YgPSBhbmQgcmVsYXRlZCBvcGVyYXRvcnM=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="4"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="euc_cn_to_mic" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgRVVDX0NOIHRvIE1VTEVfSU5URVJOQUw=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="euc_cn_to_utf8" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgRVVDX0NOIHRvIFVURjg=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="euc_jis_2004_to_shift_jis_2004" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgRVVDX0pJU18yMDA0IHRvIFNISUZUX0pJU18yMDA0">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="euc_jis_2004_to_utf8" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgRVVDX0pJU18yMDA0IHRvIFVURjg=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="euc_jp_to_mic" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgRVVDX0pQIHRvIE1VTEVfSU5URVJOQUw=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="euc_jp_to_sjis" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgRVVDX0pQIHRvIFNKSVM=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="euc_jp_to_utf8" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgRVVDX0pQIHRvIFVURjg=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="euc_kr_to_mic" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgRVVDX0tSIHRvIE1VTEVfSU5URVJOQUw=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="euc_kr_to_utf8" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgRVVDX0tSIHRvIFVURjg=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="euc_tw_to_big5" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgRVVDX1RXIHRvIEJJRzU=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="euc_tw_to_mic" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgRVVDX1RXIHRvIE1VTEVfSU5URVJOQUw=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="euc_tw_to_utf8" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgRVVDX1RXIHRvIFVURjg=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="event_trigger_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="event_trigger" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="event_trigger_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="event_trigger" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="every" schema="pg_catalog" catalog="gamedb" type="2" remarks="Ym9vbGVhbi1hbmQgYWdncmVnYXRl">
      <prototype>
        <parameter name="$1" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="exp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bmF0dXJhbCBleHBvbmVudGlhbCAoZV54KQ==">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="factorial" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZmFjdG9yaWFs">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="family" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWRkcmVzcyBmYW1pbHkgKDQgZm9yIElQdjQsIDYgZm9yIElQdjYp">
      <prototype>
        <parameter name="$1" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="fdw_handler_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="fdw_handler" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="fdw_handler_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="fdw_handler" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="first_value" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZmV0Y2ggdGhlIGZpcnN0IHJvdyB2YWx1ZQ==">
      <prototype>
        <parameter name="$1" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float4" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCBpbnQ4IHRvIGZsb2F0NA==">
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float48div" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float48eq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float48ge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float48gt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float48le" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float48lt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float48mi" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float48mul" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float48ne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float48pl" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float4_accum" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIHRyYW5zaXRpb24gZnVuY3Rpb24=">
      <prototype>
        <parameter name="$1" sqlType="_float8" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="$2" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="_float8" precision="0" scale="0" nullable="true" jdbcType="2003" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float4abs" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgQCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float4div" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="$2" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float4eq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="$2" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float4ge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="$2" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float4gt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="$2" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float4in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float4larger" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGFyZ2VyIG9mIHR3bw==">
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="$2" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float4le" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="$2" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float4lt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="$2" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float4mi" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="$2" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float4mul" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="$2" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float4ne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="$2" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float4out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float4pl" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="$2" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float4recv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float4send" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float4smaller" schema="pg_catalog" catalog="gamedb" type="2" remarks="c21hbGxlciBvZiB0d28=">
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="$2" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float4um" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float4up" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float8" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCBpbnQ4IHRvIGZsb2F0OA==">
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float84div" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float84eq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float84ge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float84gt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float84le" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float84lt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float84mi" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float84mul" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float84ne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float84pl" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float8_accum" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIHRyYW5zaXRpb24gZnVuY3Rpb24=">
      <prototype>
        <parameter name="$1" sqlType="_float8" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="_float8" precision="0" scale="0" nullable="true" jdbcType="2003" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float8_avg" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIGZpbmFsIGZ1bmN0aW9u">
      <prototype>
        <parameter name="$1" sqlType="_float8" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float8_corr" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIGZpbmFsIGZ1bmN0aW9u">
      <prototype>
        <parameter name="$1" sqlType="_float8" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float8_covar_pop" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIGZpbmFsIGZ1bmN0aW9u">
      <prototype>
        <parameter name="$1" sqlType="_float8" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float8_covar_samp" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIGZpbmFsIGZ1bmN0aW9u">
      <prototype>
        <parameter name="$1" sqlType="_float8" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float8_regr_accum" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIHRyYW5zaXRpb24gZnVuY3Rpb24=">
      <prototype>
        <parameter name="$1" sqlType="_float8" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="$3" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="3"/>
        <parameter name="returnValue" sqlType="_float8" precision="0" scale="0" nullable="true" jdbcType="2003" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float8_regr_avgx" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIGZpbmFsIGZ1bmN0aW9u">
      <prototype>
        <parameter name="$1" sqlType="_float8" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float8_regr_avgy" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIGZpbmFsIGZ1bmN0aW9u">
      <prototype>
        <parameter name="$1" sqlType="_float8" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float8_regr_intercept" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIGZpbmFsIGZ1bmN0aW9u">
      <prototype>
        <parameter name="$1" sqlType="_float8" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float8_regr_r2" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIGZpbmFsIGZ1bmN0aW9u">
      <prototype>
        <parameter name="$1" sqlType="_float8" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float8_regr_slope" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIGZpbmFsIGZ1bmN0aW9u">
      <prototype>
        <parameter name="$1" sqlType="_float8" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float8_regr_sxx" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIGZpbmFsIGZ1bmN0aW9u">
      <prototype>
        <parameter name="$1" sqlType="_float8" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float8_regr_sxy" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIGZpbmFsIGZ1bmN0aW9u">
      <prototype>
        <parameter name="$1" sqlType="_float8" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float8_regr_syy" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIGZpbmFsIGZ1bmN0aW9u">
      <prototype>
        <parameter name="$1" sqlType="_float8" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float8_stddev_pop" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIGZpbmFsIGZ1bmN0aW9u">
      <prototype>
        <parameter name="$1" sqlType="_float8" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float8_stddev_samp" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIGZpbmFsIGZ1bmN0aW9u">
      <prototype>
        <parameter name="$1" sqlType="_float8" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float8_var_pop" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIGZpbmFsIGZ1bmN0aW9u">
      <prototype>
        <parameter name="$1" sqlType="_float8" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float8_var_samp" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIGZpbmFsIGZ1bmN0aW9u">
      <prototype>
        <parameter name="$1" sqlType="_float8" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float8abs" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgQCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float8div" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float8eq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float8ge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float8gt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float8in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float8larger" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGFyZ2VyIG9mIHR3bw==">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float8le" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float8lt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float8mi" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float8mul" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float8ne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float8out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float8pl" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float8recv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float8send" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float8smaller" schema="pg_catalog" catalog="gamedb" type="2" remarks="c21hbGxlciBvZiB0d28=">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float8um" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="float8up" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="floor" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGFyZ2VzdCBpbnRlZ2VyIDw9IHZhbHVl">
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="flt4_mul_cash" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="$2" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="flt8_mul_cash" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="fmgr_c_validator" schema="pg_catalog" catalog="gamedb" type="2" remarks="KGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="fmgr_internal_validator" schema="pg_catalog" catalog="gamedb" type="2" remarks="KGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="fmgr_sql_validator" schema="pg_catalog" catalog="gamedb" type="2" remarks="KGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="format" schema="pg_catalog" catalog="gamedb" type="2" remarks="Zm9ybWF0IHRleHQgbWVzc2FnZQ==">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="any" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="format_type" schema="pg_catalog" catalog="gamedb" type="2" remarks="Zm9ybWF0IGEgdHlwZSBvaWQgYW5kIGF0dHR5cG1vZCB0byBjYW5vbmljYWwgU1FM">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gb18030_to_utf8" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgR0IxODAzMCB0byBVVEY4">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gbk_to_utf8" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgR0JLIHRvIFVURjg=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="generate_series" schema="pg_catalog" catalog="gamedb" type="2" remarks="bm9uLXBlcnNpc3RlbnQgc2VyaWVzIGdlbmVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="3"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="$3" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="returnValue" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="$3" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="returnValue" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="generate_subscripts" schema="pg_catalog" catalog="gamedb" type="2" remarks="YXJyYXkgc3Vic2NyaXB0cyBnZW5lcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="3"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="get_bit" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2V0IGJpdA==">
      <prototype>
        <parameter name="$1" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="get_byte" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2V0IGJ5dGU=">
      <prototype>
        <parameter name="$1" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="get_current_ts_config" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2V0IGN1cnJlbnQgdHNlYXJjaCBjb25maWd1cmF0aW9u">
      <prototype>
        <parameter name="returnValue" sqlType="regconfig" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="getdatabaseencoding" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZW5jb2RpbmcgbmFtZSBvZiBjdXJyZW50IGRhdGFiYXNl">
      <prototype>
        <parameter name="returnValue" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="getpgusername" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZGVwcmVjYXRlZCwgdXNlIGN1cnJlbnRfdXNlciBpbnN0ZWFk">
      <prototype>
        <parameter name="returnValue" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gin_cmp_prefix" schema="pg_catalog" catalog="gamedb" type="2" remarks="R0lOIHRzdmVjdG9yIHN1cHBvcnQ=">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gin_cmp_tslexeme" schema="pg_catalog" catalog="gamedb" type="2" remarks="R0lOIHRzdmVjdG9yIHN1cHBvcnQ=">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gin_extract_tsquery" schema="pg_catalog" catalog="gamedb" type="2" remarks="R0lOIHRzdmVjdG9yIHN1cHBvcnQ=">
      <prototype>
        <parameter name="$1" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="$6" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="6"/>
        <parameter name="$7" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="7"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gin_extract_tsvector" schema="pg_catalog" catalog="gamedb" type="2" remarks="R0lOIHRzdmVjdG9yIHN1cHBvcnQ=">
      <prototype>
        <parameter name="$1" sqlType="tsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="tsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gin_tsquery_consistent" schema="pg_catalog" catalog="gamedb" type="2" remarks="R0lOIHRzdmVjdG9yIHN1cHBvcnQ=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="$3" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="$6" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="6"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="$3" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="$6" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="6"/>
        <parameter name="$7" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="7"/>
        <parameter name="$8" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="8"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="ginarrayconsistent" schema="pg_catalog" catalog="gamedb" type="2" remarks="R0lOIGFycmF5IHN1cHBvcnQ=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="$3" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="$6" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="6"/>
        <parameter name="$7" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="7"/>
        <parameter name="$8" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="8"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="ginarrayextract" schema="pg_catalog" catalog="gamedb" type="2" remarks="R0lOIGFycmF5IHN1cHBvcnQgKG9ic29sZXRlKQ==">
      <prototype>
        <parameter name="$1" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="ginbeginscan" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2luKGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="ginbuild" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2luKGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="ginbuildempty" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2luKGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="ginbulkdelete" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2luKGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gincostestimate" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2luKGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="$6" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="6"/>
        <parameter name="$7" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="7"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="ginendscan" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2luKGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gingetbitmap" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2luKGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gininsert" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2luKGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="$6" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="6"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="ginmarkpos" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2luKGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="ginoptions" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2luKGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="_text" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="$2" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="ginqueryarrayextract" schema="pg_catalog" catalog="gamedb" type="2" remarks="R0lOIGFycmF5IHN1cHBvcnQ=">
      <prototype>
        <parameter name="$1" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="$6" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="6"/>
        <parameter name="$7" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="7"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="ginrescan" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2luKGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="ginrestrpos" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2luKGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="ginvacuumcleanup" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2luKGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gist_box_compress" schema="pg_catalog" catalog="gamedb" type="2" remarks="R2lTVCBzdXBwb3J0">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gist_box_consistent" schema="pg_catalog" catalog="gamedb" type="2" remarks="R2lTVCBzdXBwb3J0">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="$4" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gist_box_decompress" schema="pg_catalog" catalog="gamedb" type="2" remarks="R2lTVCBzdXBwb3J0">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gist_box_penalty" schema="pg_catalog" catalog="gamedb" type="2" remarks="R2lTVCBzdXBwb3J0">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gist_box_picksplit" schema="pg_catalog" catalog="gamedb" type="2" remarks="R2lTVCBzdXBwb3J0">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gist_box_same" schema="pg_catalog" catalog="gamedb" type="2" remarks="R2lTVCBzdXBwb3J0">
      <prototype>
        <parameter name="$1" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gist_box_union" schema="pg_catalog" catalog="gamedb" type="2" remarks="R2lTVCBzdXBwb3J0">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gist_circle_compress" schema="pg_catalog" catalog="gamedb" type="2" remarks="R2lTVCBzdXBwb3J0">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gist_circle_consistent" schema="pg_catalog" catalog="gamedb" type="2" remarks="R2lTVCBzdXBwb3J0">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="$4" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gist_point_compress" schema="pg_catalog" catalog="gamedb" type="2" remarks="R2lTVCBzdXBwb3J0">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gist_point_consistent" schema="pg_catalog" catalog="gamedb" type="2" remarks="R2lTVCBzdXBwb3J0">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="$4" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gist_point_distance" schema="pg_catalog" catalog="gamedb" type="2" remarks="R2lTVCBzdXBwb3J0">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="$4" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="4"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gist_poly_compress" schema="pg_catalog" catalog="gamedb" type="2" remarks="R2lTVCBzdXBwb3J0">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gist_poly_consistent" schema="pg_catalog" catalog="gamedb" type="2" remarks="R2lTVCBzdXBwb3J0">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="$4" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gistbeginscan" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2lzdChpbnRlcm5hbCk=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gistbuild" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2lzdChpbnRlcm5hbCk=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gistbuildempty" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2lzdChpbnRlcm5hbCk=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gistbulkdelete" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2lzdChpbnRlcm5hbCk=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gistcostestimate" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2lzdChpbnRlcm5hbCk=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="$6" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="6"/>
        <parameter name="$7" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="7"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gistendscan" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2lzdChpbnRlcm5hbCk=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gistgetbitmap" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2lzdChpbnRlcm5hbCk=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gistgettuple" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2lzdChpbnRlcm5hbCk=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gistinsert" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2lzdChpbnRlcm5hbCk=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="$6" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="6"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gistmarkpos" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2lzdChpbnRlcm5hbCk=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gistoptions" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2lzdChpbnRlcm5hbCk=">
      <prototype>
        <parameter name="$1" sqlType="_text" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="$2" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gistrescan" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2lzdChpbnRlcm5hbCk=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gistrestrpos" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2lzdChpbnRlcm5hbCk=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gistvacuumcleanup" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2lzdChpbnRlcm5hbCk=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gtsquery_compress" schema="pg_catalog" catalog="gamedb" type="2" remarks="R2lTVCB0c3F1ZXJ5IHN1cHBvcnQ=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gtsquery_consistent" schema="pg_catalog" catalog="gamedb" type="2" remarks="R2lTVCB0c3F1ZXJ5IHN1cHBvcnQ=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="$4" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gtsquery_decompress" schema="pg_catalog" catalog="gamedb" type="2" remarks="R2lTVCB0c3F1ZXJ5IHN1cHBvcnQ=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gtsquery_penalty" schema="pg_catalog" catalog="gamedb" type="2" remarks="R2lTVCB0c3F1ZXJ5IHN1cHBvcnQ=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gtsquery_picksplit" schema="pg_catalog" catalog="gamedb" type="2" remarks="R2lTVCB0c3F1ZXJ5IHN1cHBvcnQ=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gtsquery_same" schema="pg_catalog" catalog="gamedb" type="2" remarks="R2lTVCB0c3F1ZXJ5IHN1cHBvcnQ=">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gtsquery_union" schema="pg_catalog" catalog="gamedb" type="2" remarks="R2lTVCB0c3F1ZXJ5IHN1cHBvcnQ=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gtsvector_compress" schema="pg_catalog" catalog="gamedb" type="2" remarks="R2lTVCB0c3ZlY3RvciBzdXBwb3J0">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gtsvector_consistent" schema="pg_catalog" catalog="gamedb" type="2" remarks="R2lTVCB0c3ZlY3RvciBzdXBwb3J0">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="gtsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="$4" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gtsvector_decompress" schema="pg_catalog" catalog="gamedb" type="2" remarks="R2lTVCB0c3ZlY3RvciBzdXBwb3J0">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gtsvector_penalty" schema="pg_catalog" catalog="gamedb" type="2" remarks="R2lTVCB0c3ZlY3RvciBzdXBwb3J0">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gtsvector_picksplit" schema="pg_catalog" catalog="gamedb" type="2" remarks="R2lTVCB0c3ZlY3RvciBzdXBwb3J0">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gtsvector_same" schema="pg_catalog" catalog="gamedb" type="2" remarks="R2lTVCB0c3ZlY3RvciBzdXBwb3J0">
      <prototype>
        <parameter name="$1" sqlType="gtsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="gtsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gtsvector_union" schema="pg_catalog" catalog="gamedb" type="2" remarks="R2lTVCB0c3ZlY3RvciBzdXBwb3J0">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gtsvectorin" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="gtsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="gtsvectorout" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="gtsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="has_any_column_privilege" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y3VycmVudCB1c2VyIHByaXZpbGVnZSBvbiBhbnkgY29sdW1uIGJ5IHJlbCBvaWQ=">
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="has_column_privilege" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y3VycmVudCB1c2VyIHByaXZpbGVnZSBvbiBjb2x1bW4gYnkgcmVsIG9pZCwgY29sIGF0dG51bQ==">
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="$4" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="4"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="3"/>
        <parameter name="$4" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="4"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="$4" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="4"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="3"/>
        <parameter name="$4" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="4"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="$4" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="4"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="3"/>
        <parameter name="$4" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="4"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="$4" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="4"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="3"/>
        <parameter name="$4" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="4"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="has_database_privilege" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y3VycmVudCB1c2VyIHByaXZpbGVnZSBvbiBkYXRhYmFzZSBieSBkYXRhYmFzZSBvaWQ=">
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="has_foreign_data_wrapper_privilege" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y3VycmVudCB1c2VyIHByaXZpbGVnZSBvbiBmb3JlaWduIGRhdGEgd3JhcHBlciBieSBmb3JlaWduIGRhdGEgd3JhcHBlciBvaWQ=">
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="has_function_privilege" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y3VycmVudCB1c2VyIHByaXZpbGVnZSBvbiBmdW5jdGlvbiBieSBmdW5jdGlvbiBvaWQ=">
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="has_language_privilege" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y3VycmVudCB1c2VyIHByaXZpbGVnZSBvbiBsYW5ndWFnZSBieSBsYW5ndWFnZSBvaWQ=">
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="has_schema_privilege" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y3VycmVudCB1c2VyIHByaXZpbGVnZSBvbiBzY2hlbWEgYnkgc2NoZW1hIG9pZA==">
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="has_sequence_privilege" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y3VycmVudCB1c2VyIHByaXZpbGVnZSBvbiBzZXF1ZW5jZSBieSBzZXEgb2lk">
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="has_server_privilege" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y3VycmVudCB1c2VyIHByaXZpbGVnZSBvbiBzZXJ2ZXIgYnkgc2VydmVyIG9pZA==">
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="has_table_privilege" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y3VycmVudCB1c2VyIHByaXZpbGVnZSBvbiByZWxhdGlvbiBieSByZWwgb2lk">
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="has_tablespace_privilege" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y3VycmVudCB1c2VyIHByaXZpbGVnZSBvbiB0YWJsZXNwYWNlIGJ5IHRhYmxlc3BhY2Ugb2lk">
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="has_type_privilege" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y3VycmVudCB1c2VyIHByaXZpbGVnZSBvbiB0eXBlIGJ5IHR5cGUgb2lk">
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="hash_aclitem" schema="pg_catalog" catalog="gamedb" type="2" remarks="aGFzaA==">
      <prototype>
        <parameter name="$1" sqlType="aclitem" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="hash_array" schema="pg_catalog" catalog="gamedb" type="2" remarks="aGFzaA==">
      <prototype>
        <parameter name="$1" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="hash_numeric" schema="pg_catalog" catalog="gamedb" type="2" remarks="aGFzaA==">
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="hash_range" schema="pg_catalog" catalog="gamedb" type="2" remarks="aGFzaCBhIHJhbmdl">
      <prototype>
        <parameter name="$1" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="hashbeginscan" schema="pg_catalog" catalog="gamedb" type="2" remarks="aGFzaChpbnRlcm5hbCk=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="hashbpchar" schema="pg_catalog" catalog="gamedb" type="2" remarks="aGFzaA==">
      <prototype>
        <parameter name="$1" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="hashbuild" schema="pg_catalog" catalog="gamedb" type="2" remarks="aGFzaChpbnRlcm5hbCk=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="hashbuildempty" schema="pg_catalog" catalog="gamedb" type="2" remarks="aGFzaChpbnRlcm5hbCk=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="hashbulkdelete" schema="pg_catalog" catalog="gamedb" type="2" remarks="aGFzaChpbnRlcm5hbCk=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="hashchar" schema="pg_catalog" catalog="gamedb" type="2" remarks="aGFzaA==">
      <prototype>
        <parameter name="$1" sqlType="char" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="hashcostestimate" schema="pg_catalog" catalog="gamedb" type="2" remarks="aGFzaChpbnRlcm5hbCk=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="$6" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="6"/>
        <parameter name="$7" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="7"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="hashendscan" schema="pg_catalog" catalog="gamedb" type="2" remarks="aGFzaChpbnRlcm5hbCk=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="hashenum" schema="pg_catalog" catalog="gamedb" type="2" remarks="aGFzaA==">
      <prototype>
        <parameter name="$1" sqlType="anyenum" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="hashfloat4" schema="pg_catalog" catalog="gamedb" type="2" remarks="aGFzaA==">
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="hashfloat8" schema="pg_catalog" catalog="gamedb" type="2" remarks="aGFzaA==">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="hashgetbitmap" schema="pg_catalog" catalog="gamedb" type="2" remarks="aGFzaChpbnRlcm5hbCk=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="hashgettuple" schema="pg_catalog" catalog="gamedb" type="2" remarks="aGFzaChpbnRlcm5hbCk=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="hashinet" schema="pg_catalog" catalog="gamedb" type="2" remarks="aGFzaA==">
      <prototype>
        <parameter name="$1" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="hashinsert" schema="pg_catalog" catalog="gamedb" type="2" remarks="aGFzaChpbnRlcm5hbCk=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="$6" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="6"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="hashint2" schema="pg_catalog" catalog="gamedb" type="2" remarks="aGFzaA==">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="hashint2vector" schema="pg_catalog" catalog="gamedb" type="2" remarks="aGFzaA==">
      <prototype>
        <parameter name="$1" sqlType="int2vector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="hashint4" schema="pg_catalog" catalog="gamedb" type="2" remarks="aGFzaA==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="hashint8" schema="pg_catalog" catalog="gamedb" type="2" remarks="aGFzaA==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="hashmacaddr" schema="pg_catalog" catalog="gamedb" type="2" remarks="aGFzaA==">
      <prototype>
        <parameter name="$1" sqlType="macaddr" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="hashmarkpos" schema="pg_catalog" catalog="gamedb" type="2" remarks="aGFzaChpbnRlcm5hbCk=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="hashname" schema="pg_catalog" catalog="gamedb" type="2" remarks="aGFzaA==">
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="hashoid" schema="pg_catalog" catalog="gamedb" type="2" remarks="aGFzaA==">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="hashoidvector" schema="pg_catalog" catalog="gamedb" type="2" remarks="aGFzaA==">
      <prototype>
        <parameter name="$1" sqlType="oidvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="hashoptions" schema="pg_catalog" catalog="gamedb" type="2" remarks="aGFzaChpbnRlcm5hbCk=">
      <prototype>
        <parameter name="$1" sqlType="_text" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="$2" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="hashrescan" schema="pg_catalog" catalog="gamedb" type="2" remarks="aGFzaChpbnRlcm5hbCk=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="hashrestrpos" schema="pg_catalog" catalog="gamedb" type="2" remarks="aGFzaChpbnRlcm5hbCk=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="hashtext" schema="pg_catalog" catalog="gamedb" type="2" remarks="aGFzaA==">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="hashvacuumcleanup" schema="pg_catalog" catalog="gamedb" type="2" remarks="aGFzaChpbnRlcm5hbCk=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="hashvarlena" schema="pg_catalog" catalog="gamedb" type="2" remarks="aGFzaA==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="height" schema="pg_catalog" catalog="gamedb" type="2" remarks="Ym94IGhlaWdodA==">
      <prototype>
        <parameter name="$1" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="host" schema="pg_catalog" catalog="gamedb" type="2" remarks="c2hvdyBhZGRyZXNzIG9jdGV0cyBvbmx5">
      <prototype>
        <parameter name="$1" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="hostmask" schema="pg_catalog" catalog="gamedb" type="2" remarks="aG9zdG1hc2sgb2YgYWRkcmVzcw==">
      <prototype>
        <parameter name="$1" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="iclikejoinsel" schema="pg_catalog" catalog="gamedb" type="2" remarks="am9pbiBzZWxlY3Rpdml0eSBvZiBJTElLRQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="iclikesel" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVzdHJpY3Rpb24gc2VsZWN0aXZpdHkgb2YgSUxJS0U=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="4"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="icnlikejoinsel" schema="pg_catalog" catalog="gamedb" type="2" remarks="am9pbiBzZWxlY3Rpdml0eSBvZiBOT1QgSUxJS0U=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="icnlikesel" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVzdHJpY3Rpb24gc2VsZWN0aXZpdHkgb2YgTk9UIElMSUtF">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="4"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="icregexeqjoinsel" schema="pg_catalog" catalog="gamedb" type="2" remarks="am9pbiBzZWxlY3Rpdml0eSBvZiBjYXNlLWluc2Vuc2l0aXZlIHJlZ2V4IG1hdGNo">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="icregexeqsel" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVzdHJpY3Rpb24gc2VsZWN0aXZpdHkgb2YgY2FzZS1pbnNlbnNpdGl2ZSByZWdleCBtYXRjaA==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="4"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="icregexnejoinsel" schema="pg_catalog" catalog="gamedb" type="2" remarks="am9pbiBzZWxlY3Rpdml0eSBvZiBjYXNlLWluc2Vuc2l0aXZlIHJlZ2V4IG5vbi1tYXRjaA==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="icregexnesel" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVzdHJpY3Rpb24gc2VsZWN0aXZpdHkgb2YgY2FzZS1pbnNlbnNpdGl2ZSByZWdleCBub24tbWF0Y2g=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="4"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="inet_client_addr" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW5ldCBhZGRyZXNzIG9mIHRoZSBjbGllbnQ=">
      <prototype>
        <parameter name="returnValue" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="inet_client_port" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y2xpZW50J3MgcG9ydCBudW1iZXIgZm9yIHRoaXMgY29ubmVjdGlvbg==">
      <prototype>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="inet_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="inet_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="inet_recv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="inet_send" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="inet_server_addr" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW5ldCBhZGRyZXNzIG9mIHRoZSBzZXJ2ZXI=">
      <prototype>
        <parameter name="returnValue" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="inet_server_port" schema="pg_catalog" catalog="gamedb" type="2" remarks="c2VydmVyJ3MgcG9ydCBudW1iZXIgZm9yIHRoaXMgY29ubmVjdGlvbg==">
      <prototype>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="inetand" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgJiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="inetmi" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="inetmi_int8" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="inetnot" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgfiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="inetor" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgfCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="inetpl" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="initcap" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y2FwaXRhbGl6ZSBlYWNoIHdvcmQ=">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int2" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCBpbnQ4IHRvIGludDI=">
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int24div" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int24eq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int24ge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int24gt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int24le" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int24lt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int24mi" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int24mul" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int24ne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int24pl" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int28div" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int28eq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int28ge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int28gt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int28le" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int28lt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int28mi" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int28mul" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int28ne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int28pl" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int2_accum" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIHRyYW5zaXRpb24gZnVuY3Rpb24=">
      <prototype>
        <parameter name="$1" sqlType="_numeric" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="_numeric" precision="0" scale="0" nullable="true" jdbcType="2003" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int2_avg_accum" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIHRyYW5zaXRpb24gZnVuY3Rpb24=">
      <prototype>
        <parameter name="$1" sqlType="_int8" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="_int8" precision="0" scale="0" nullable="true" jdbcType="2003" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int2_mul_cash" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int2_sum" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIHRyYW5zaXRpb24gZnVuY3Rpb24=">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int2abs" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgQCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int2and" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgJiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int2div" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int2eq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int2ge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int2gt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int2in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int2larger" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGFyZ2VyIG9mIHR3bw==">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int2le" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int2lt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int2mi" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int2mod" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgJSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int2mul" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int2ne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int2not" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgfiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int2or" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgfCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int2out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int2pl" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int2recv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int2send" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int2shl" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPDwgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int2shr" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int2smaller" schema="pg_catalog" catalog="gamedb" type="2" remarks="c21hbGxlciBvZiB0d28=">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int2um" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int2up" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int2vectoreq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int2vector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="int2vector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int2vectorin" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int2vector" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int2vectorout" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="int2vector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int2vectorrecv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int2vector" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int2vectorsend" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="int2vector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int2xor" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgIyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int4" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCBjaGFyIHRvIGludDQ=">
      <prototype>
        <parameter name="$1" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="char" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int42div" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int42eq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int42ge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int42gt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int42le" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int42lt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int42mi" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int42mul" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int42ne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int42pl" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int48div" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int48eq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int48ge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int48gt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int48le" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int48lt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int48mi" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int48mul" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int48ne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int48pl" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int4_accum" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIHRyYW5zaXRpb24gZnVuY3Rpb24=">
      <prototype>
        <parameter name="$1" sqlType="_numeric" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="_numeric" precision="0" scale="0" nullable="true" jdbcType="2003" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int4_avg_accum" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIHRyYW5zaXRpb24gZnVuY3Rpb24=">
      <prototype>
        <parameter name="$1" sqlType="_int8" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="_int8" precision="0" scale="0" nullable="true" jdbcType="2003" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int4_mul_cash" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int4_sum" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIHRyYW5zaXRpb24gZnVuY3Rpb24=">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int4abs" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgQCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int4and" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgJiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int4div" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int4eq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int4ge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int4gt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int4in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int4inc" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW5jcmVtZW50">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int4larger" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGFyZ2VyIG9mIHR3bw==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int4le" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int4lt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int4mi" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int4mod" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgJSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int4mul" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int4ne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int4not" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgfiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int4or" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgfCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int4out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int4pl" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int4range" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50NHJhbmdlIGNvbnN0cnVjdG9y">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
      </prototype>
    </procedure>
    <procedure name="int4range_canonical" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCBhbiBpbnQ0IHJhbmdlIHRvIGNhbm9uaWNhbCBmb3Jt">
      <prototype>
        <parameter name="$1" sqlType="int4range" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
      </prototype>
    </procedure>
    <procedure name="int4range_subdiff" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZmxvYXQ4IGRpZmZlcmVuY2Ugb2YgdHdvIGludDQgdmFsdWVz">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int4recv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int4send" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int4shl" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPDwgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int4shr" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int4smaller" schema="pg_catalog" catalog="gamedb" type="2" remarks="c21hbGxlciBvZiB0d28=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int4um" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int4up" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int4xor" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgIyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int8" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCBpbnQyIHRvIGludDg=">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int82div" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int82eq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int82ge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int82gt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int82le" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int82lt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int82mi" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int82mul" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int82ne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int82pl" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int84div" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int84eq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int84ge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int84gt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int84le" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int84lt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int84mi" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int84mul" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int84ne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int84pl" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int8_accum" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIHRyYW5zaXRpb24gZnVuY3Rpb24=">
      <prototype>
        <parameter name="$1" sqlType="_numeric" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="_numeric" precision="0" scale="0" nullable="true" jdbcType="2003" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int8_avg" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIGZpbmFsIGZ1bmN0aW9u">
      <prototype>
        <parameter name="$1" sqlType="_int8" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int8_avg_accum" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIHRyYW5zaXRpb24gZnVuY3Rpb24=">
      <prototype>
        <parameter name="$1" sqlType="_numeric" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="_numeric" precision="0" scale="0" nullable="true" jdbcType="2003" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int8_sum" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIHRyYW5zaXRpb24gZnVuY3Rpb24=">
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int8abs" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgQCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int8and" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgJiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int8div" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int8eq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int8ge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int8gt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int8in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int8inc" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW5jcmVtZW50">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int8inc_any" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW5jcmVtZW50LCBpZ25vcmVzIHNlY29uZCBhcmd1bWVudA==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="any" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int8inc_float8_float8" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIHRyYW5zaXRpb24gZnVuY3Rpb24=">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="$3" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="3"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int8larger" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGFyZ2VyIG9mIHR3bw==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int8le" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int8lt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int8mi" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int8mod" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgJSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int8mul" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int8ne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int8not" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgfiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int8or" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgfCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int8out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int8pl" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int8pl_inet" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int8range" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50OHJhbmdlIGNvbnN0cnVjdG9y">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
      </prototype>
    </procedure>
    <procedure name="int8range_canonical" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCBhbiBpbnQ4IHJhbmdlIHRvIGNhbm9uaWNhbCBmb3Jt">
      <prototype>
        <parameter name="$1" sqlType="int8range" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
      </prototype>
    </procedure>
    <procedure name="int8range_subdiff" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZmxvYXQ4IGRpZmZlcmVuY2Ugb2YgdHdvIGludDggdmFsdWVz">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int8recv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int8send" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int8shl" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPDwgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int8shr" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int8smaller" schema="pg_catalog" catalog="gamedb" type="2" remarks="c21hbGxlciBvZiB0d28=">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int8um" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int8up" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="int8xor" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgIyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="integer_pl_date" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="2"/>
        <parameter name="returnValue" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="inter_lb" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPyMgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="line" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="inter_sb" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPyMgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="inter_sl" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPyMgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="line" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="internal_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="internal_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="interval" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCB0aW1lIHRvIGludGVydmFs">
      <prototype>
        <parameter name="$1" sqlType="reltime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="returnValue" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="interval_accum" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIHRyYW5zaXRpb24gZnVuY3Rpb24=">
      <prototype>
        <parameter name="$1" sqlType="_interval" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="$2" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="_interval" precision="0" scale="0" nullable="true" jdbcType="2003" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="interval_avg" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIGZpbmFsIGZ1bmN0aW9u">
      <prototype>
        <parameter name="$1" sqlType="_interval" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="returnValue" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="interval_cmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="interval_div" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="interval_eq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="interval_ge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="interval_gt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="interval_hash" schema="pg_catalog" catalog="gamedb" type="2" remarks="aGFzaA==">
      <prototype>
        <parameter name="$1" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="interval_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="interval_larger" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGFyZ2VyIG9mIHR3bw==">
      <prototype>
        <parameter name="$1" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="interval_le" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="interval_lt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="interval_mi" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="interval_mul" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="interval_ne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="interval_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="interval_pl" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="interval_pl_date" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="2"/>
        <parameter name="returnValue" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="interval_pl_time" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="2"/>
        <parameter name="returnValue" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="interval_pl_timestamp" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="interval_pl_timestamptz" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="interval_pl_timetz" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="2"/>
        <parameter name="returnValue" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="interval_recv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="interval_send" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="interval_smaller" schema="pg_catalog" catalog="gamedb" type="2" remarks="c21hbGxlciBvZiB0d28=">
      <prototype>
        <parameter name="$1" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="interval_transform" schema="pg_catalog" catalog="gamedb" type="2" remarks="dHJhbnNmb3JtIGFuIGludGVydmFsIGxlbmd0aCBjb2VyY2lvbg==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="interval_um" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="intervaltypmodin" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9PIHR5cG1vZA==">
      <prototype>
        <parameter name="$1" sqlType="_cstring" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="intervaltypmodout" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9PIHR5cG1vZA==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="intinterval" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD8+IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tinterval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="isclosed" schema="pg_catalog" catalog="gamedb" type="2" remarks="cGF0aCBjbG9zZWQ/">
      <prototype>
        <parameter name="$1" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="isempty" schema="pg_catalog" catalog="gamedb" type="2" remarks="aXMgdGhlIHJhbmdlIGVtcHR5Pw==">
      <prototype>
        <parameter name="$1" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="isfinite" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZmluaXRlIGFic3RpbWU/">
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="ishorizontal" schema="pg_catalog" catalog="gamedb" type="2" remarks="aG9yaXpvbnRhbA==">
      <prototype>
        <parameter name="$1" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="line" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="iso8859_1_to_utf8" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgTEFUSU4xIHRvIFVURjg=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="iso8859_to_utf8" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgSVNPLTg4NTktOCB0byBVVEY4">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="iso_to_koi8r" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgSVNPLTg4NTktNSB0byBLT0k4Ug==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="iso_to_mic" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgSVNPLTg4NTktNSB0byBNVUxFX0lOVEVSTkFM">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="iso_to_win1251" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgSVNPLTg4NTktNSB0byBXSU4xMjUx">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="iso_to_win866" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgSVNPLTg4NTktNSB0byBXSU44NjY=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="isopen" schema="pg_catalog" catalog="gamedb" type="2" remarks="cGF0aCBvcGVuPw==">
      <prototype>
        <parameter name="$1" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="isparallel" schema="pg_catalog" catalog="gamedb" type="2" remarks="cGFyYWxsZWw=">
      <prototype>
        <parameter name="$1" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="line" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="line" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="isperp" schema="pg_catalog" catalog="gamedb" type="2" remarks="cGVycGVuZGljdWxhcg==">
      <prototype>
        <parameter name="$1" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="line" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="line" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="isvertical" schema="pg_catalog" catalog="gamedb" type="2" remarks="dmVydGljYWw=">
      <prototype>
        <parameter name="$1" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="line" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="johab_to_utf8" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgSk9IQUIgdG8gVVRGOA==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="json_agg" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIGlucHV0IGludG8ganNvbg==">
      <prototype>
        <parameter name="$1" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="json" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="json_agg_finalfn" schema="pg_catalog" catalog="gamedb" type="2" remarks="anNvbiBhZ2dyZWdhdGUgZmluYWwgZnVuY3Rpb24=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="json" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="json_agg_transfn" schema="pg_catalog" catalog="gamedb" type="2" remarks="anNvbiBhZ2dyZWdhdGUgdHJhbnNpdGlvbiBmdW5jdGlvbg==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="json_array_element" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2V0IGpzb24gYXJyYXkgZWxlbWVudA==">
      <prototype>
        <parameter name="from_json" sqlType="json" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="element_index" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="json" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="json_array_element_text" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2V0IGpzb24gYXJyYXkgZWxlbWVudCBhcyB0ZXh0">
      <prototype>
        <parameter name="from_json" sqlType="json" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="element_index" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="json_array_elements" schema="pg_catalog" catalog="gamedb" type="2" remarks="a2V5IHZhbHVlIHBhaXJzIG9mIGEganNvbiBvYmplY3Q=">
      <prototype>
        <parameter name="from_json" sqlType="json" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="value" sqlType="json" precision="0" scale="0" nullable="true" jdbcType="1111" type="4" index="2"/>
        <parameter name="returnValue" sqlType="json" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="json_array_length" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVuZ3RoIG9mIGpzb24gYXJyYXk=">
      <prototype>
        <parameter name="$1" sqlType="json" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="json_each" schema="pg_catalog" catalog="gamedb" type="2" remarks="a2V5IHZhbHVlIHBhaXJzIG9mIGEganNvbiBvYmplY3Q=">
      <prototype>
        <parameter name="from_json" sqlType="json" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="key" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="2"/>
        <parameter name="value" sqlType="json" precision="0" scale="0" nullable="true" jdbcType="1111" type="4" index="3"/>
      </prototype>
    </procedure>
    <procedure name="json_each_text" schema="pg_catalog" catalog="gamedb" type="2" remarks="a2V5IHZhbHVlIHBhaXJzIG9mIGEganNvbiBvYmplY3Q=">
      <prototype>
        <parameter name="from_json" sqlType="json" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="key" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="2"/>
        <parameter name="value" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="3"/>
      </prototype>
    </procedure>
    <procedure name="json_extract_path" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2V0IHZhbHVlIGZyb20ganNvbiB3aXRoIHBhdGggZWxlbWVudHM=">
      <prototype>
        <parameter name="from_json" sqlType="json" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="path_elems" sqlType="_text" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="2"/>
        <parameter name="returnValue" sqlType="json" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="json_extract_path_op" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2V0IHZhbHVlIGZyb20ganNvbiB3aXRoIHBhdGggZWxlbWVudHM=">
      <prototype>
        <parameter name="from_json" sqlType="json" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="path_elems" sqlType="_text" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="2"/>
        <parameter name="returnValue" sqlType="json" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="json_extract_path_text" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2V0IHZhbHVlIGZyb20ganNvbiBhcyB0ZXh0IHdpdGggcGF0aCBlbGVtZW50cw==">
      <prototype>
        <parameter name="from_json" sqlType="json" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="path_elems" sqlType="_text" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="json_extract_path_text_op" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2V0IHZhbHVlIGZyb20ganNvbiBhcyB0ZXh0IHdpdGggcGF0aCBlbGVtZW50cw==">
      <prototype>
        <parameter name="from_json" sqlType="json" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="path_elems" sqlType="_text" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="json_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="json" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="json_object_field" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2V0IGpzb24gb2JqZWN0IGZpZWxk">
      <prototype>
        <parameter name="from_json" sqlType="json" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="field_name" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="json" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="json_object_field_text" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2V0IGpzb24gb2JqZWN0IGZpZWxkIGFzIHRleHQ=">
      <prototype>
        <parameter name="from_json" sqlType="json" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="field_name" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="json_object_keys" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2V0IGpzb24gb2JqZWN0IGtleXM=">
      <prototype>
        <parameter name="$1" sqlType="json" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="json_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="json" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="json_populate_record" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2V0IHJlY29yZCBmaWVsZHMgZnJvbSBhIGpzb24gb2JqZWN0">
      <prototype>
        <parameter name="base" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="from_json" sqlType="json" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="use_json_as_text" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="3"/>
        <parameter name="returnValue" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="json_populate_recordset" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2V0IHNldCBvZiByZWNvcmRzIHdpdGggZmllbGRzIGZyb20gYSBqc29uIGFycmF5IG9mIG9iamVjdHM=">
      <prototype>
        <parameter name="base" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="from_json" sqlType="json" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="use_json_as_text" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="3"/>
        <parameter name="returnValue" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="json_recv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="json" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="json_send" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="json" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="justify_days" schema="pg_catalog" catalog="gamedb" type="2" remarks="cHJvbW90ZSBncm91cHMgb2YgMzAgZGF5cyB0byBudW1iZXJzIG9mIG1vbnRocw==">
      <prototype>
        <parameter name="$1" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="justify_hours" schema="pg_catalog" catalog="gamedb" type="2" remarks="cHJvbW90ZSBncm91cHMgb2YgMjQgaG91cnMgdG8gbnVtYmVycyBvZiBkYXlz">
      <prototype>
        <parameter name="$1" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="justify_interval" schema="pg_catalog" catalog="gamedb" type="2" remarks="cHJvbW90ZSBncm91cHMgb2YgMjQgaG91cnMgdG8gbnVtYmVycyBvZiBkYXlzIGFuZCBwcm9tb3RlIGdyb3VwcyBvZiAzMCBkYXlzIHRvIG51bWJlcnMgb2YgbW9udGhz">
      <prototype>
        <parameter name="$1" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="koi8r_to_iso" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgS09JOFIgdG8gSVNPLTg4NTktNQ==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="koi8r_to_mic" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgS09JOFIgdG8gTVVMRV9JTlRFUk5BTA==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="koi8r_to_utf8" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgS09JOFIgdG8gVVRGOA==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="koi8r_to_win1251" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgS09JOFIgdG8gV0lOMTI1MQ==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="koi8r_to_win866" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgS09JOFIgdG8gV0lOODY2">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="koi8u_to_utf8" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgS09JOFUgdG8gVVRGOA==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="lag" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZmV0Y2ggdGhlIE50aCBwcmVjZWRpbmcgcm93IHZhbHVlIHdpdGggZGVmYXVsdA==">
      <prototype>
        <parameter name="$1" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="returnValue" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="language_handler_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="language_handler" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="language_handler_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="language_handler" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="last_value" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZmV0Y2ggdGhlIGxhc3Qgcm93IHZhbHVl">
      <prototype>
        <parameter name="$1" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="lastval" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y3VycmVudCB2YWx1ZSBmcm9tIGxhc3QgdXNlZCBzZXF1ZW5jZQ==">
      <prototype>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="latin1_to_mic" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgTEFUSU4xIHRvIE1VTEVfSU5URVJOQUw=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="latin2_to_mic" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgTEFUSU4yIHRvIE1VTEVfSU5URVJOQUw=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="latin2_to_win1250" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgTEFUSU4yIHRvIFdJTjEyNTA=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="latin3_to_mic" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgTEFUSU4zIHRvIE1VTEVfSU5URVJOQUw=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="latin4_to_mic" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgTEFUSU40IHRvIE1VTEVfSU5URVJOQUw=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="lead" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZmV0Y2ggdGhlIE50aCBmb2xsb3dpbmcgcm93IHZhbHVlIHdpdGggZGVmYXVsdA==">
      <prototype>
        <parameter name="$1" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="returnValue" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="left" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZXh0cmFjdCB0aGUgZmlyc3QgbiBjaGFyYWN0ZXJz">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="length" schema="pg_catalog" catalog="gamedb" type="2" remarks="bnVtYmVyIG9mIGxleGVtZXM=">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="1"/>
        <parameter name="$2" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="tsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="like" schema="pg_catalog" catalog="gamedb" type="2" remarks="bWF0Y2hlcyBMSUtFIGV4cHJlc3Npb24=">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="1"/>
        <parameter name="$2" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="like_escape" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCBMSUtFIHBhdHRlcm4gdG8gdXNlIGJhY2tzbGFzaCBlc2NhcGVz">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="1"/>
        <parameter name="$2" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="likejoinsel" schema="pg_catalog" catalog="gamedb" type="2" remarks="am9pbiBzZWxlY3Rpdml0eSBvZiBMSUtF">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="likesel" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVzdHJpY3Rpb24gc2VsZWN0aXZpdHkgb2YgTElLRQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="4"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="line" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29uc3RydWN0IGxpbmUgZnJvbSBwb2ludHM=">
      <prototype>
        <parameter name="$1" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="line" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="line_distance" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPC0+IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="line" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="line" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="line_eq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="line" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="line" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="line_horizontal" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPy0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="line" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="line_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="line" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="line_interpt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgIyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="line" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="line" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="line_intersect" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPyMgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="line" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="line" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="line_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="line" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="line_parallel" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgP3x8IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="line" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="line" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="line_perp" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPy18IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="line" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="line" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="line_recv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="line" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="line_send" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="line" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="line_vertical" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgP3wgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="line" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="ln" schema="pg_catalog" catalog="gamedb" type="2" remarks="bmF0dXJhbCBsb2dhcml0aG0=">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="lo_close" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGFyZ2Ugb2JqZWN0IGNsb3Nl">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="lo_creat" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGFyZ2Ugb2JqZWN0IGNyZWF0ZQ==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="lo_create" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGFyZ2Ugb2JqZWN0IGNyZWF0ZQ==">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="lo_export" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGFyZ2Ugb2JqZWN0IGV4cG9ydA==">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="lo_import" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGFyZ2Ugb2JqZWN0IGltcG9ydA==">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="lo_lseek" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGFyZ2Ugb2JqZWN0IHNlZWs=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="lo_lseek64" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGFyZ2Ugb2JqZWN0IHNlZWsgKDY0IGJpdCk=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="lo_open" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGFyZ2Ugb2JqZWN0IG9wZW4=">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="lo_tell" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGFyZ2Ugb2JqZWN0IHBvc2l0aW9u">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="lo_tell64" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGFyZ2Ugb2JqZWN0IHBvc2l0aW9uICg2NCBiaXQp">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="lo_truncate" schema="pg_catalog" catalog="gamedb" type="2" remarks="dHJ1bmNhdGUgbGFyZ2Ugb2JqZWN0">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="lo_truncate64" schema="pg_catalog" catalog="gamedb" type="2" remarks="dHJ1bmNhdGUgbGFyZ2Ugb2JqZWN0ICg2NCBiaXQp">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="lo_unlink" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGFyZ2Ugb2JqZWN0IHVubGluayAoZGVsZXRlKQ==">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="log" schema="pg_catalog" catalog="gamedb" type="2" remarks="YmFzZSAxMCBsb2dhcml0aG0=">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="$2" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="loread" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGFyZ2Ugb2JqZWN0IHJlYWQ=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="lower" schema="pg_catalog" catalog="gamedb" type="2" remarks="bG93ZXJjYXNl">
      <prototype>
        <parameter name="$1" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="lower_inc" schema="pg_catalog" catalog="gamedb" type="2" remarks="aXMgdGhlIHJhbmdlJ3MgbG93ZXIgYm91bmQgaW5jbHVzaXZlPw==">
      <prototype>
        <parameter name="$1" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="lower_inf" schema="pg_catalog" catalog="gamedb" type="2" remarks="aXMgdGhlIHJhbmdlJ3MgbG93ZXIgYm91bmQgaW5maW5pdGU/">
      <prototype>
        <parameter name="$1" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="lowrite" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGFyZ2Ugb2JqZWN0IHdyaXRl">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="lpad" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVmdC1wYWQgc3RyaW5nIHRvIGxlbmd0aA==">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="lseg" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCBwb2ludHMgdG8gbGluZSBzZWdtZW50">
      <prototype>
        <parameter name="$1" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="lseg_center" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgQEAgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="lseg_distance" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPC0+IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="lseg_eq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="lseg_ge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="lseg_gt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="lseg_horizontal" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPy0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="lseg_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="lseg_interpt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgIyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="lseg_intersect" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPyMgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="lseg_le" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="lseg_length" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgQC1AIG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="lseg_lt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="lseg_ne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="lseg_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="lseg_parallel" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgP3x8IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="lseg_perp" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPy18IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="lseg_recv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="lseg_send" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="lseg_vertical" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgP3wgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="ltrim" schema="pg_catalog" catalog="gamedb" type="2" remarks="dHJpbSBzcGFjZXMgZnJvbSBsZWZ0IGVuZCBvZiBzdHJpbmc=">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="macaddr_and" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgJiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="macaddr" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="macaddr" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="macaddr" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="macaddr_cmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="macaddr" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="macaddr" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="macaddr_eq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="macaddr" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="macaddr" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="macaddr_ge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="macaddr" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="macaddr" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="macaddr_gt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="macaddr" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="macaddr" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="macaddr_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="macaddr" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="macaddr_le" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="macaddr" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="macaddr" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="macaddr_lt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="macaddr" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="macaddr" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="macaddr_ne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="macaddr" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="macaddr" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="macaddr_not" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgfiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="macaddr" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="macaddr" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="macaddr_or" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgfCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="macaddr" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="macaddr" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="macaddr" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="macaddr_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="macaddr" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="macaddr_recv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="macaddr" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="macaddr_send" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="macaddr" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="makeaclitem" schema="pg_catalog" catalog="gamedb" type="2" remarks="bWFrZSBBQ0wgaXRlbQ==">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="$4" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="4"/>
        <parameter name="returnValue" sqlType="aclitem" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="masklen" schema="pg_catalog" catalog="gamedb" type="2" remarks="bmV0bWFzayBsZW5ndGg=">
      <prototype>
        <parameter name="$1" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="max" schema="pg_catalog" catalog="gamedb" type="2" remarks="bWF4aW11bSB2YWx1ZSBvZiBhbGwgZW51bSBpbnB1dCB2YWx1ZXM=">
      <prototype>
        <parameter name="$1" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="returnValue" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="returnValue" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="returnValue" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="returnValue" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="returnValue" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="tid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="tid" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="anyenum" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="anyenum" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="md5" schema="pg_catalog" catalog="gamedb" type="2" remarks="TUQ1IGhhc2g=">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="mic_to_ascii" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgTVVMRV9JTlRFUk5BTCB0byBTUUxfQVNDSUk=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="mic_to_big5" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgTVVMRV9JTlRFUk5BTCB0byBCSUc1">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="mic_to_euc_cn" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgTVVMRV9JTlRFUk5BTCB0byBFVUNfQ04=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="mic_to_euc_jp" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgTVVMRV9JTlRFUk5BTCB0byBFVUNfSlA=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="mic_to_euc_kr" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgTVVMRV9JTlRFUk5BTCB0byBFVUNfS1I=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="mic_to_euc_tw" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgTVVMRV9JTlRFUk5BTCB0byBFVUNfVFc=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="mic_to_iso" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgTVVMRV9JTlRFUk5BTCB0byBJU08tODg1OS01">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="mic_to_koi8r" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgTVVMRV9JTlRFUk5BTCB0byBLT0k4Ug==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="mic_to_latin1" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgTVVMRV9JTlRFUk5BTCB0byBMQVRJTjE=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="mic_to_latin2" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgTVVMRV9JTlRFUk5BTCB0byBMQVRJTjI=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="mic_to_latin3" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgTVVMRV9JTlRFUk5BTCB0byBMQVRJTjM=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="mic_to_latin4" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgTVVMRV9JTlRFUk5BTCB0byBMQVRJTjQ=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="mic_to_sjis" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgTVVMRV9JTlRFUk5BTCB0byBTSklT">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="mic_to_win1250" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgTVVMRV9JTlRFUk5BTCB0byBXSU4xMjUw">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="mic_to_win1251" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgTVVMRV9JTlRFUk5BTCB0byBXSU4xMjUx">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="mic_to_win866" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgTVVMRV9JTlRFUk5BTCB0byBXSU44NjY=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="min" schema="pg_catalog" catalog="gamedb" type="2" remarks="bWluaW11bSB2YWx1ZSBvZiBhbGwgZW51bSBpbnB1dCB2YWx1ZXM=">
      <prototype>
        <parameter name="$1" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="returnValue" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="returnValue" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="returnValue" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="returnValue" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="returnValue" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="tid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="tid" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="anyenum" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="anyenum" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="mktinterval" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCM+IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="tinterval" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="mod" schema="pg_catalog" catalog="gamedb" type="2" remarks="bW9kdWx1cw==">
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="$2" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="money" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCBudW1lcmljIHRvIG1vbmV5">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="mul_d_interval" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="name" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCBjaGFyKG4pIHRvIG5hbWU=">
      <prototype>
        <parameter name="$1" sqlType="varchar" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="returnValue" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="nameeq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="namege" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="namegt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="nameiclike" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2Ygfn4qIG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="nameicnlike" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgIX5+KiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="nameicregexeq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2Ygfiogb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="nameicregexne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgIX4qIG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="namein" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="namele" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="namelike" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2Ygfn4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="namelt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="namene" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="namenlike" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgIX5+IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="nameout" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="namerecv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="nameregexeq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgfiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="nameregexne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgIX4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="namesend" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="neqjoinsel" schema="pg_catalog" catalog="gamedb" type="2" remarks="am9pbiBzZWxlY3Rpdml0eSBvZiA8PiBhbmQgcmVsYXRlZCBvcGVyYXRvcnM=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="neqsel" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVzdHJpY3Rpb24gc2VsZWN0aXZpdHkgb2YgPD4gYW5kIHJlbGF0ZWQgb3BlcmF0b3Jz">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="4"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="netmask" schema="pg_catalog" catalog="gamedb" type="2" remarks="bmV0bWFzayBvZiBhZGRyZXNz">
      <prototype>
        <parameter name="$1" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="network" schema="pg_catalog" catalog="gamedb" type="2" remarks="bmV0d29yayBwYXJ0IG9mIGFkZHJlc3M=">
      <prototype>
        <parameter name="$1" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cidr" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="network_cmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="network_eq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="network_ge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="network_gt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="network_le" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="network_lt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="network_ne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="network_sub" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPDwgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="network_subeq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPDw9IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="network_sup" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="network_supeq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj49IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="nextval" schema="pg_catalog" catalog="gamedb" type="2" remarks="c2VxdWVuY2UgbmV4dCB2YWx1ZQ==">
      <prototype>
        <parameter name="$1" sqlType="regclass" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="nlikejoinsel" schema="pg_catalog" catalog="gamedb" type="2" remarks="am9pbiBzZWxlY3Rpdml0eSBvZiBOT1QgTElLRQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="nlikesel" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVzdHJpY3Rpb24gc2VsZWN0aXZpdHkgb2YgTk9UIExJS0U=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="4"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="notlike" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZG9lcyBub3QgbWF0Y2ggTElLRSBleHByZXNzaW9u">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="1"/>
        <parameter name="$2" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="now" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y3VycmVudCB0cmFuc2FjdGlvbiB0aW1l">
      <prototype>
        <parameter name="returnValue" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="npoints" schema="pg_catalog" catalog="gamedb" type="2" remarks="bnVtYmVyIG9mIHBvaW50cw==">
      <prototype>
        <parameter name="$1" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="nth_value" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZmV0Y2ggdGhlIE50aCByb3cgdmFsdWU=">
      <prototype>
        <parameter name="$1" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="ntile" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3BsaXQgcm93cyBpbnRvIE4gZ3JvdXBz">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numeric" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCBtb25leSB0byBudW1lcmlj">
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numeric_abs" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgQCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numeric_accum" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIHRyYW5zaXRpb24gZnVuY3Rpb24=">
      <prototype>
        <parameter name="$1" sqlType="_numeric" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="$2" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="_numeric" precision="0" scale="0" nullable="true" jdbcType="2003" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numeric_add" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="$2" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numeric_avg" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIGZpbmFsIGZ1bmN0aW9u">
      <prototype>
        <parameter name="$1" sqlType="_numeric" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numeric_avg_accum" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIHRyYW5zaXRpb24gZnVuY3Rpb24=">
      <prototype>
        <parameter name="$1" sqlType="_numeric" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="$2" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="_numeric" precision="0" scale="0" nullable="true" jdbcType="2003" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numeric_cmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="$2" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numeric_div" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="$2" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numeric_div_trunc" schema="pg_catalog" catalog="gamedb" type="2" remarks="dHJ1bmMoeC95KQ==">
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="$2" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numeric_eq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="$2" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numeric_exp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bmF0dXJhbCBleHBvbmVudGlhbCAoZV54KQ==">
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numeric_fac" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgISBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numeric_ge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="$2" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numeric_gt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="$2" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numeric_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numeric_inc" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW5jcmVtZW50IGJ5IG9uZQ==">
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numeric_larger" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGFyZ2VyIG9mIHR3bw==">
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="$2" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numeric_le" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="$2" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numeric_ln" schema="pg_catalog" catalog="gamedb" type="2" remarks="bmF0dXJhbCBsb2dhcml0aG0=">
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numeric_log" schema="pg_catalog" catalog="gamedb" type="2" remarks="bG9nYXJpdGhtIGJhc2UgbSBvZiBu">
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="$2" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numeric_lt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="$2" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numeric_mod" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgJSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="$2" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numeric_mul" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="$2" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numeric_ne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="$2" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numeric_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numeric_power" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgXiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="$2" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numeric_recv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numeric_send" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numeric_smaller" schema="pg_catalog" catalog="gamedb" type="2" remarks="c21hbGxlciBvZiB0d28=">
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="$2" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numeric_sqrt" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3F1YXJlIHJvb3Q=">
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numeric_stddev_pop" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIGZpbmFsIGZ1bmN0aW9u">
      <prototype>
        <parameter name="$1" sqlType="_numeric" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numeric_stddev_samp" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIGZpbmFsIGZ1bmN0aW9u">
      <prototype>
        <parameter name="$1" sqlType="_numeric" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numeric_sub" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="$2" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numeric_transform" schema="pg_catalog" catalog="gamedb" type="2" remarks="dHJhbnNmb3JtIGEgbnVtZXJpYyBsZW5ndGggY29lcmNpb24=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numeric_uminus" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numeric_uplus" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numeric_var_pop" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIGZpbmFsIGZ1bmN0aW9u">
      <prototype>
        <parameter name="$1" sqlType="_numeric" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numeric_var_samp" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIGZpbmFsIGZ1bmN0aW9u">
      <prototype>
        <parameter name="$1" sqlType="_numeric" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numerictypmodin" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9PIHR5cG1vZA==">
      <prototype>
        <parameter name="$1" sqlType="_cstring" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numerictypmodout" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9PIHR5cG1vZA==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numnode" schema="pg_catalog" catalog="gamedb" type="2" remarks="bnVtYmVyIG9mIG5vZGVz">
      <prototype>
        <parameter name="$1" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="numrange" schema="pg_catalog" catalog="gamedb" type="2" remarks="bnVtcmFuZ2UgY29uc3RydWN0b3I=">
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="$2" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="2"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="$2" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
      </prototype>
    </procedure>
    <procedure name="numrange_subdiff" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZmxvYXQ4IGRpZmZlcmVuY2Ugb2YgdHdvIG51bWVyaWMgdmFsdWVz">
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="$2" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="obj_description" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZGVwcmVjYXRlZCwgdXNlIHR3by1hcmd1bWVudCBmb3JtIGluc3RlYWQ=">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="octet_length" schema="pg_catalog" catalog="gamedb" type="2" remarks="b2N0ZXQgbGVuZ3Ro">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="oid" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCBpbnQ4IHRvIG9pZA==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="oideq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="oidge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="oidgt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="oidin" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="oidlarger" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGFyZ2VyIG9mIHR3bw==">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="oidle" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="oidlt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="oidne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="oidout" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="oidrecv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="oidsend" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="oidsmaller" schema="pg_catalog" catalog="gamedb" type="2" remarks="c21hbGxlciBvZiB0d28=">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="oidvectoreq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="oidvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oidvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="oidvectorge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="oidvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oidvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="oidvectorgt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="oidvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oidvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="oidvectorin" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="oidvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="oidvectorle" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="oidvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oidvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="oidvectorlt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="oidvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oidvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="oidvectorne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="oidvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oidvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="oidvectorout" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="oidvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="oidvectorrecv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="oidvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="oidvectorsend" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="oidvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="oidvectortypes" schema="pg_catalog" catalog="gamedb" type="2" remarks="cHJpbnQgdHlwZSBuYW1lcyBvZiBvaWR2ZWN0b3IgZmllbGQ=">
      <prototype>
        <parameter name="$1" sqlType="oidvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="on_pb" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPEAgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="on_pl" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPEAgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="line" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="on_ppath" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPEAgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="on_ps" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPEAgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="on_sb" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPEAgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="on_sl" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPEAgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="line" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="opaque_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="opaque" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="opaque_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="opaque" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="overlaps" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJ2YWxzIG92ZXJsYXA/">
      <prototype>
        <parameter name="$1" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="$2" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="2"/>
        <parameter name="$3" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="3"/>
        <parameter name="$4" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="4"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="$3" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="3"/>
        <parameter name="$4" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="4"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="3"/>
        <parameter name="$4" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="$3" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="3"/>
        <parameter name="$4" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="3"/>
        <parameter name="$4" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="4"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="$2" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="2"/>
        <parameter name="$3" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="3"/>
        <parameter name="$4" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="4"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="$2" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="3"/>
        <parameter name="$4" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="$2" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="2"/>
        <parameter name="$3" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="3"/>
        <parameter name="$4" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="$2" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="3"/>
        <parameter name="$4" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="4"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="$3" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="3"/>
        <parameter name="$4" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="4"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="3"/>
        <parameter name="$4" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="$3" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="3"/>
        <parameter name="$4" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="3"/>
        <parameter name="$4" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="4"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="overlay" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3Vic3RpdHV0ZSBwb3J0aW9uIG9mIHN0cmluZw==">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="$4" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="4"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="$2" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="$4" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="4"/>
        <parameter name="returnValue" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="$2" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="1"/>
        <parameter name="$2" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="$4" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="4"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="1"/>
        <parameter name="$2" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="path" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCBwb2x5Z29uIHRvIHBhdGg=">
      <prototype>
        <parameter name="$1" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="path_add" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="path_add_pt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="path_center" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgQEAgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="path_contain_pt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgQD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="path_distance" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPC0+IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="path_div_pt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="path_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="path_inter" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPyMgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="path_length" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgQC1AIG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="path_mul_pt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="path_n_eq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="path_n_ge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="path_n_gt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="path_n_le" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="path_n_lt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="path_npoints" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgIyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="path_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="path_recv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="path_send" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="path_sub_pt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pclose" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y2xvc2UgcGF0aA==">
      <prototype>
        <parameter name="$1" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="percent_rank" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZnJhY3Rpb25hbCByYW5rIHdpdGhpbiBwYXJ0aXRpb24=">
      <prototype>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_advisory_lock" schema="pg_catalog" catalog="gamedb" type="2" remarks="b2J0YWluIGV4Y2x1c2l2ZSBhZHZpc29yeSBsb2Nr">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_advisory_lock_shared" schema="pg_catalog" catalog="gamedb" type="2" remarks="b2J0YWluIHNoYXJlZCBhZHZpc29yeSBsb2Nr">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_advisory_unlock" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVsZWFzZSBleGNsdXNpdmUgYWR2aXNvcnkgbG9jaw==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_advisory_unlock_all" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVsZWFzZSBhbGwgYWR2aXNvcnkgbG9ja3M=">
      <prototype>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_advisory_unlock_shared" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVsZWFzZSBzaGFyZWQgYWR2aXNvcnkgbG9jaw==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_advisory_xact_lock" schema="pg_catalog" catalog="gamedb" type="2" remarks="b2J0YWluIGV4Y2x1c2l2ZSBhZHZpc29yeSBsb2Nr">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_advisory_xact_lock_shared" schema="pg_catalog" catalog="gamedb" type="2" remarks="b2J0YWluIHNoYXJlZCBhZHZpc29yeSBsb2Nr">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_available_extension_versions" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGlzdCBhdmFpbGFibGUgZXh0ZW5zaW9uIHZlcnNpb25z">
      <prototype>
        <parameter name="name" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="1"/>
        <parameter name="version" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="2"/>
        <parameter name="superuser" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="4" index="3"/>
        <parameter name="relocatable" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="4" index="4"/>
        <parameter name="schema" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="5"/>
        <parameter name="requires" sqlType="_name" precision="0" scale="0" nullable="true" jdbcType="2003" type="4" index="6"/>
        <parameter name="comment" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="7"/>
      </prototype>
    </procedure>
    <procedure name="pg_available_extensions" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGlzdCBhdmFpbGFibGUgZXh0ZW5zaW9ucw==">
      <prototype>
        <parameter name="name" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="1"/>
        <parameter name="default_version" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="2"/>
        <parameter name="comment" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="3"/>
      </prototype>
    </procedure>
    <procedure name="pg_backend_pid" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogY3VycmVudCBiYWNrZW5kIFBJRA==">
      <prototype>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_backup_start_time" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhcnQgdGltZSBvZiBhbiBvbmxpbmUgYmFja3Vw">
      <prototype>
        <parameter name="returnValue" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_cancel_backend" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y2FuY2VsIGEgc2VydmVyIHByb2Nlc3MnIGN1cnJlbnQgcXVlcnk=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_char_to_encoding" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCBlbmNvZGluZyBuYW1lIHRvIGVuY29kaW5nIGlk">
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_client_encoding" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZW5jb2RpbmcgbmFtZSBvZiBjdXJyZW50IGRhdGFiYXNl">
      <prototype>
        <parameter name="returnValue" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_collation_for" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29sbGF0aW9uIG9mIHRoZSBhcmd1bWVudDsgaW1wbGVtZW50YXRpb24gb2YgdGhlIENPTExBVElPTiBGT1IgZXhwcmVzc2lvbg==">
      <prototype>
        <parameter name="$1" sqlType="any" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_collation_is_visible" schema="pg_catalog" catalog="gamedb" type="2" remarks="aXMgY29sbGF0aW9uIHZpc2libGUgaW4gc2VhcmNoIHBhdGg/">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_column_is_updatable" schema="pg_catalog" catalog="gamedb" type="2" remarks="aXMgYSBjb2x1bW4gdXBkYXRhYmxl">
      <prototype>
        <parameter name="$1" sqlType="regclass" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="2"/>
        <parameter name="$3" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_column_size" schema="pg_catalog" catalog="gamedb" type="2" remarks="Ynl0ZXMgcmVxdWlyZWQgdG8gc3RvcmUgdGhlIHZhbHVlLCBwZXJoYXBzIHdpdGggY29tcHJlc3Npb24=">
      <prototype>
        <parameter name="$1" sqlType="any" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_conf_load_time" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29uZmlndXJhdGlvbiBsb2FkIHRpbWU=">
      <prototype>
        <parameter name="returnValue" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_conversion_is_visible" schema="pg_catalog" catalog="gamedb" type="2" remarks="aXMgY29udmVyc2lvbiB2aXNpYmxlIGluIHNlYXJjaCBwYXRoPw==">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_create_restore_point" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y3JlYXRlIGEgbmFtZWQgcmVzdG9yZSBwb2ludA==">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_current_xlog_insert_location" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y3VycmVudCB4bG9nIGluc2VydCBsb2NhdGlvbg==">
      <prototype>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_current_xlog_location" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y3VycmVudCB4bG9nIHdyaXRlIGxvY2F0aW9u">
      <prototype>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_cursor" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2V0IHRoZSBvcGVuIGN1cnNvcnMgZm9yIHRoaXMgc2Vzc2lvbg==">
      <prototype>
        <parameter name="name" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="1"/>
        <parameter name="statement" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="2"/>
        <parameter name="is_holdable" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="4" index="3"/>
        <parameter name="is_binary" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="4" index="4"/>
        <parameter name="is_scrollable" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="4" index="5"/>
        <parameter name="creation_time" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="4" index="6"/>
      </prototype>
    </procedure>
    <procedure name="pg_database_size" schema="pg_catalog" catalog="gamedb" type="2" remarks="dG90YWwgZGlzayBzcGFjZSB1c2FnZSBmb3IgdGhlIHNwZWNpZmllZCBkYXRhYmFzZQ==">
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_describe_object" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2V0IGlkZW50aWZpY2F0aW9uIG9mIFNRTCBvYmplY3Q=">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_encoding_max_length" schema="pg_catalog" catalog="gamedb" type="2" remarks="bWF4aW11bSBvY3RldCBsZW5ndGggb2YgYSBjaGFyYWN0ZXIgaW4gZ2l2ZW4gZW5jb2Rpbmc=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_encoding_to_char" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCBlbmNvZGluZyBpZCB0byBlbmNvZGluZyBuYW1l">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_event_trigger_dropped_objects" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGlzdCBvYmplY3RzIGRyb3BwZWQgYnkgdGhlIGN1cnJlbnQgY29tbWFuZA==">
      <prototype>
        <parameter name="classid" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="4" index="1"/>
        <parameter name="objid" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="4" index="2"/>
        <parameter name="objsubid" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="4" index="3"/>
        <parameter name="object_type" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="4"/>
        <parameter name="schema_name" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="5"/>
        <parameter name="object_name" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="6"/>
        <parameter name="object_identity" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="7"/>
      </prototype>
    </procedure>
    <procedure name="pg_export_snapshot" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZXhwb3J0IGEgc25hcHNob3Q=">
      <prototype>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_extension_config_dump" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZmxhZyBhbiBleHRlbnNpb24ncyB0YWJsZSBjb250ZW50cyB0byBiZSBlbWl0dGVkIGJ5IHBnX2R1bXA=">
      <prototype>
        <parameter name="$1" sqlType="regclass" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_extension_update_paths" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGlzdCBhbiBleHRlbnNpb24ncyB2ZXJzaW9uIHVwZGF0ZSBwYXRocw==">
      <prototype>
        <parameter name="name" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="source" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="2"/>
        <parameter name="target" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="3"/>
        <parameter name="path" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="4"/>
      </prototype>
    </procedure>
    <procedure name="pg_function_is_visible" schema="pg_catalog" catalog="gamedb" type="2" remarks="aXMgZnVuY3Rpb24gdmlzaWJsZSBpbiBzZWFyY2ggcGF0aD8=">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_get_constraintdef" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29uc3RyYWludCBkZXNjcmlwdGlvbiB3aXRoIHByZXR0eS1wcmludCBvcHRpb24=">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_get_expr" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZGVwYXJzZSBhbiBlbmNvZGVkIGV4cHJlc3Npb24gd2l0aCBwcmV0dHktcHJpbnQgb3B0aW9u">
      <prototype>
        <parameter name="$1" sqlType="pg_node_tree" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="pg_node_tree" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="3"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_get_function_arguments" schema="pg_catalog" catalog="gamedb" type="2" remarks="YXJndW1lbnQgbGlzdCBvZiBhIGZ1bmN0aW9u">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_get_function_identity_arguments" schema="pg_catalog" catalog="gamedb" type="2" remarks="aWRlbnRpdHkgYXJndW1lbnQgbGlzdCBvZiBhIGZ1bmN0aW9u">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_get_function_result" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVzdWx0IHR5cGUgb2YgYSBmdW5jdGlvbg==">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_get_functiondef" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZGVmaW5pdGlvbiBvZiBhIGZ1bmN0aW9u">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_get_indexdef" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW5kZXggZGVzY3JpcHRpb24gKGZ1bGwgY3JlYXRlIHN0YXRlbWVudCBvciBzaW5nbGUgZXhwcmVzc2lvbikgd2l0aCBwcmV0dHktcHJpbnQgb3B0aW9u">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="3"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_get_keywords" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGlzdCBvZiBTUUwga2V5d29yZHM=">
      <prototype>
        <parameter name="word" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="1"/>
        <parameter name="catcode" sqlType="char" precision="0" scale="0" nullable="true" jdbcType="1" type="4" index="2"/>
        <parameter name="catdesc" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="3"/>
      </prototype>
    </procedure>
    <procedure name="pg_get_multixact_members" schema="pg_catalog" catalog="gamedb" type="2" remarks="dmlldyBtZW1iZXJzIG9mIGEgbXVsdGl4YWN0aWQ=">
      <prototype>
        <parameter name="multixid" sqlType="xid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="xid" sqlType="xid" precision="0" scale="0" nullable="true" jdbcType="1111" type="4" index="2"/>
        <parameter name="mode" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="3"/>
      </prototype>
    </procedure>
    <procedure name="pg_get_ruledef" schema="pg_catalog" catalog="gamedb" type="2" remarks="c291cmNlIHRleHQgb2YgYSBydWxlIHdpdGggcHJldHR5LXByaW50IG9wdGlvbg==">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_get_serial_sequence" schema="pg_catalog" catalog="gamedb" type="2" remarks="bmFtZSBvZiBzZXF1ZW5jZSBmb3IgYSBzZXJpYWwgY29sdW1u">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_get_triggerdef" schema="pg_catalog" catalog="gamedb" type="2" remarks="dHJpZ2dlciBkZXNjcmlwdGlvbiB3aXRoIHByZXR0eS1wcmludCBvcHRpb24=">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_get_userbyid" schema="pg_catalog" catalog="gamedb" type="2" remarks="cm9sZSBuYW1lIGJ5IE9JRCAod2l0aCBmYWxsYmFjayk=">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_get_viewdef" schema="pg_catalog" catalog="gamedb" type="2" remarks="c2VsZWN0IHN0YXRlbWVudCBvZiBhIHZpZXcgd2l0aCBwcmV0dHktcHJpbnRpbmcgYW5kIHNwZWNpZmllZCBsaW5lIHdyYXBwaW5n">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_has_role" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y3VycmVudCB1c2VyIHByaXZpbGVnZSBvbiByb2xlIGJ5IHJvbGUgb2lk">
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_identify_object" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2V0IG1hY2hpbmUtcGFyc2VhYmxlIGlkZW50aWZpY2F0aW9uIG9mIFNRTCBvYmplY3Q=">
      <prototype>
        <parameter name="classid" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="objid" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="subobjid" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="type" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="4"/>
        <parameter name="schema" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="5"/>
        <parameter name="name" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="6"/>
        <parameter name="identity" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="7"/>
      </prototype>
    </procedure>
    <procedure name="pg_indexes_size" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZGlzayBzcGFjZSB1c2FnZSBmb3IgYWxsIGluZGV4ZXMgYXR0YWNoZWQgdG8gdGhlIHNwZWNpZmllZCB0YWJsZQ==">
      <prototype>
        <parameter name="$1" sqlType="regclass" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_is_in_backup" schema="pg_catalog" catalog="gamedb" type="2" remarks="dHJ1ZSBpZiBzZXJ2ZXIgaXMgaW4gb25saW5lIGJhY2t1cA==">
      <prototype>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_is_in_recovery" schema="pg_catalog" catalog="gamedb" type="2" remarks="dHJ1ZSBpZiBzZXJ2ZXIgaXMgaW4gcmVjb3Zlcnk=">
      <prototype>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_is_other_temp_schema" schema="pg_catalog" catalog="gamedb" type="2" remarks="aXMgc2NoZW1hIGFub3RoZXIgc2Vzc2lvbidzIHRlbXAgc2NoZW1hPw==">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_is_xlog_replay_paused" schema="pg_catalog" catalog="gamedb" type="2" remarks="dHJ1ZSBpZiB4bG9nIHJlcGxheSBpcyBwYXVzZWQ=">
      <prototype>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_last_xact_replay_timestamp" schema="pg_catalog" catalog="gamedb" type="2" remarks="dGltZXN0YW1wIG9mIGxhc3QgcmVwbGF5IHhhY3Q=">
      <prototype>
        <parameter name="returnValue" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_last_xlog_receive_location" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y3VycmVudCB4bG9nIGZsdXNoIGxvY2F0aW9u">
      <prototype>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_last_xlog_replay_location" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGFzdCB4bG9nIHJlcGxheSBsb2NhdGlvbg==">
      <prototype>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_listening_channels" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2V0IHRoZSBjaGFubmVscyB0aGF0IHRoZSBjdXJyZW50IGJhY2tlbmQgbGlzdGVucyB0bw==">
      <prototype>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_lock_status" schema="pg_catalog" catalog="gamedb" type="2" remarks="dmlldyBzeXN0ZW0gbG9jayBpbmZvcm1hdGlvbg==">
      <prototype>
        <parameter name="locktype" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="1"/>
        <parameter name="database" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="4" index="2"/>
        <parameter name="relation" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="4" index="3"/>
        <parameter name="page" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="4" index="4"/>
        <parameter name="tuple" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="4" index="5"/>
        <parameter name="virtualxid" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="6"/>
        <parameter name="transactionid" sqlType="xid" precision="0" scale="0" nullable="true" jdbcType="1111" type="4" index="7"/>
        <parameter name="classid" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="4" index="8"/>
        <parameter name="objid" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="4" index="9"/>
        <parameter name="objsubid" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="4" index="10"/>
        <parameter name="virtualtransaction" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="11"/>
        <parameter name="pid" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="4" index="12"/>
        <parameter name="mode" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="13"/>
        <parameter name="granted" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="4" index="14"/>
        <parameter name="fastpath" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="4" index="15"/>
      </prototype>
    </procedure>
    <procedure name="pg_ls_dir" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGlzdCBhbGwgZmlsZXMgaW4gYSBkaXJlY3Rvcnk=">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_my_temp_schema" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2V0IE9JRCBvZiBjdXJyZW50IHNlc3Npb24ncyB0ZW1wIHNjaGVtYSwgaWYgYW55">
      <prototype>
        <parameter name="returnValue" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_node_tree_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="pg_node_tree" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_node_tree_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="pg_node_tree" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_node_tree_recv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="pg_node_tree" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_node_tree_send" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="pg_node_tree" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_notify" schema="pg_catalog" catalog="gamedb" type="2" remarks="c2VuZCBhIG5vdGlmaWNhdGlvbiBldmVudA==">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_opclass_is_visible" schema="pg_catalog" catalog="gamedb" type="2" remarks="aXMgb3BjbGFzcyB2aXNpYmxlIGluIHNlYXJjaCBwYXRoPw==">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_operator_is_visible" schema="pg_catalog" catalog="gamedb" type="2" remarks="aXMgb3BlcmF0b3IgdmlzaWJsZSBpbiBzZWFyY2ggcGF0aD8=">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_opfamily_is_visible" schema="pg_catalog" catalog="gamedb" type="2" remarks="aXMgb3BmYW1pbHkgdmlzaWJsZSBpbiBzZWFyY2ggcGF0aD8=">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_options_to_table" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCBnZW5lcmljIG9wdGlvbnMgYXJyYXkgdG8gbmFtZS92YWx1ZSB0YWJsZQ==">
      <prototype>
        <parameter name="options_array" sqlType="_text" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="option_name" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="2"/>
        <parameter name="option_value" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="3"/>
      </prototype>
    </procedure>
    <procedure name="pg_postmaster_start_time" schema="pg_catalog" catalog="gamedb" type="2" remarks="cG9zdG1hc3RlciBzdGFydCB0aW1l">
      <prototype>
        <parameter name="returnValue" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_prepared_statement" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2V0IHRoZSBwcmVwYXJlZCBzdGF0ZW1lbnRzIGZvciB0aGlzIHNlc3Npb24=">
      <prototype>
        <parameter name="name" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="1"/>
        <parameter name="statement" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="2"/>
        <parameter name="prepare_time" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="4" index="3"/>
        <parameter name="parameter_types" sqlType="_regtype" precision="0" scale="0" nullable="true" jdbcType="2003" type="4" index="4"/>
        <parameter name="from_sql" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="4" index="5"/>
      </prototype>
    </procedure>
    <procedure name="pg_prepared_xact" schema="pg_catalog" catalog="gamedb" type="2" remarks="dmlldyB0d28tcGhhc2UgdHJhbnNhY3Rpb25z">
      <prototype>
        <parameter name="transaction" sqlType="xid" precision="0" scale="0" nullable="true" jdbcType="1111" type="4" index="1"/>
        <parameter name="gid" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="2"/>
        <parameter name="prepared" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="4" index="3"/>
        <parameter name="ownerid" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="4" index="4"/>
        <parameter name="dbid" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="4" index="5"/>
      </prototype>
    </procedure>
    <procedure name="pg_read_binary_file" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVhZCBieXRlYSBmcm9tIGEgZmlsZQ==">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_read_file" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVhZCB0ZXh0IGZyb20gYSBmaWxl">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="3"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_relation_filenode" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZmlsZW5vZGUgaWRlbnRpZmllciBvZiByZWxhdGlvbg==">
      <prototype>
        <parameter name="$1" sqlType="regclass" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_relation_filepath" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZmlsZSBwYXRoIG9mIHJlbGF0aW9u">
      <prototype>
        <parameter name="$1" sqlType="regclass" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_relation_is_updatable" schema="pg_catalog" catalog="gamedb" type="2" remarks="aXMgYSByZWxhdGlvbiBpbnNlcnRhYmxlL3VwZGF0YWJsZS9kZWxldGFibGU=">
      <prototype>
        <parameter name="$1" sqlType="regclass" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_relation_size" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZGlzayBzcGFjZSB1c2FnZSBmb3IgdGhlIHNwZWNpZmllZCBmb3JrIG9mIGEgdGFibGUgb3IgaW5kZXg=">
      <prototype>
        <parameter name="$1" sqlType="regclass" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="regclass" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_reload_conf" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVsb2FkIGNvbmZpZ3VyYXRpb24gZmlsZXM=">
      <prototype>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_rotate_logfile" schema="pg_catalog" catalog="gamedb" type="2" remarks="cm90YXRlIGxvZyBmaWxl">
      <prototype>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_sequence_parameters" schema="pg_catalog" catalog="gamedb" type="2" remarks="c2VxdWVuY2UgcGFyYW1ldGVycywgZm9yIHVzZSBieSBpbmZvcm1hdGlvbiBzY2hlbWE=">
      <prototype>
        <parameter name="sequence_oid" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="start_value" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="4" index="2"/>
        <parameter name="minimum_value" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="4" index="3"/>
        <parameter name="maximum_value" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="4" index="4"/>
        <parameter name="increment" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="4" index="5"/>
        <parameter name="cycle_option" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="4" index="6"/>
      </prototype>
    </procedure>
    <procedure name="pg_show_all_settings" schema="pg_catalog" catalog="gamedb" type="2" remarks="U0hPVyBBTEwgYXMgYSBmdW5jdGlvbg==">
      <prototype>
        <parameter name="name" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="1"/>
        <parameter name="setting" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="2"/>
        <parameter name="unit" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="3"/>
        <parameter name="category" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="4"/>
        <parameter name="short_desc" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="5"/>
        <parameter name="extra_desc" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="6"/>
        <parameter name="context" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="7"/>
        <parameter name="vartype" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="8"/>
        <parameter name="source" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="9"/>
        <parameter name="min_val" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="10"/>
        <parameter name="max_val" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="11"/>
        <parameter name="enumvals" sqlType="_text" precision="0" scale="0" nullable="true" jdbcType="2003" type="4" index="12"/>
        <parameter name="boot_val" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="13"/>
        <parameter name="reset_val" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="14"/>
        <parameter name="sourcefile" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="15"/>
        <parameter name="sourceline" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="4" index="16"/>
      </prototype>
    </procedure>
    <procedure name="pg_size_pretty" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCBhIG51bWVyaWMgdG8gYSBodW1hbiByZWFkYWJsZSB0ZXh0IHVzaW5nIHNpemUgdW5pdHM=">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_sleep" schema="pg_catalog" catalog="gamedb" type="2" remarks="c2xlZXAgZm9yIHRoZSBzcGVjaWZpZWQgdGltZSBpbiBzZWNvbmRz">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_start_backup" schema="pg_catalog" catalog="gamedb" type="2" remarks="cHJlcGFyZSBmb3IgdGFraW5nIGFuIG9ubGluZSBiYWNrdXA=">
      <prototype>
        <parameter name="label" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="fast" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_clear_snapshot" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogZGlzY2FyZCBjdXJyZW50IHRyYW5zYWN0aW9uJ3Mgc3RhdGlzdGljcyBzbmFwc2hvdA==">
      <prototype>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_file" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2V0IGluZm9ybWF0aW9uIGFib3V0IGZpbGU=">
      <prototype>
        <parameter name="filename" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="size" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="4" index="2"/>
        <parameter name="access" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="4" index="3"/>
        <parameter name="modification" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="4" index="4"/>
        <parameter name="change" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="4" index="5"/>
        <parameter name="creation" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="4" index="6"/>
        <parameter name="isdir" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="4" index="7"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_activity" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogaW5mb3JtYXRpb24gYWJvdXQgY3VycmVudGx5IGFjdGl2ZSBiYWNrZW5kcw==">
      <prototype>
        <parameter name="pid" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="datid" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="4" index="2"/>
        <parameter name="pid" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="4" index="3"/>
        <parameter name="usesysid" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="4" index="4"/>
        <parameter name="application_name" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="5"/>
        <parameter name="state" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="6"/>
        <parameter name="query" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="7"/>
        <parameter name="waiting" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="4" index="8"/>
        <parameter name="xact_start" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="4" index="9"/>
        <parameter name="query_start" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="4" index="10"/>
        <parameter name="backend_start" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="4" index="11"/>
        <parameter name="state_change" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="4" index="12"/>
        <parameter name="client_addr" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="4" index="13"/>
        <parameter name="client_hostname" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="14"/>
        <parameter name="client_port" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="4" index="15"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_analyze_count" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbnVtYmVyIG9mIG1hbnVhbCBhbmFseXplcyBmb3IgYSB0YWJsZQ==">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_autoanalyze_count" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbnVtYmVyIG9mIGF1dG8gYW5hbHl6ZXMgZm9yIGEgdGFibGU=">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_autovacuum_count" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbnVtYmVyIG9mIGF1dG8gdmFjdXVtcyBmb3IgYSB0YWJsZQ==">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_backend_activity" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogY3VycmVudCBxdWVyeSBvZiBiYWNrZW5k">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_backend_activity_start" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogc3RhcnQgdGltZSBmb3IgY3VycmVudCBxdWVyeSBvZiBiYWNrZW5k">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_backend_client_addr" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogYWRkcmVzcyBvZiBjbGllbnQgY29ubmVjdGVkIHRvIGJhY2tlbmQ=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_backend_client_port" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogcG9ydCBudW1iZXIgb2YgY2xpZW50IGNvbm5lY3RlZCB0byBiYWNrZW5k">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_backend_dbid" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogZGF0YWJhc2UgSUQgb2YgYmFja2VuZA==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_backend_idset" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogY3VycmVudGx5IGFjdGl2ZSBiYWNrZW5kIElEcw==">
      <prototype>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_backend_pid" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogUElEIG9mIGJhY2tlbmQ=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_backend_start" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogc3RhcnQgdGltZSBmb3IgY3VycmVudCBiYWNrZW5kIHNlc3Npb24=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_backend_userid" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogdXNlciBJRCBvZiBiYWNrZW5k">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_backend_waiting" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogaXMgYmFja2VuZCBjdXJyZW50bHkgd2FpdGluZyBmb3IgYSBsb2Nr">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_backend_xact_start" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogc3RhcnQgdGltZSBmb3IgYmFja2VuZCdzIGN1cnJlbnQgdHJhbnNhY3Rpb24=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_bgwriter_buf_written_checkpoints" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbnVtYmVyIG9mIGJ1ZmZlcnMgd3JpdHRlbiBieSB0aGUgYmd3cml0ZXIgZHVyaW5nIGNoZWNrcG9pbnRz">
      <prototype>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_bgwriter_buf_written_clean" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbnVtYmVyIG9mIGJ1ZmZlcnMgd3JpdHRlbiBieSB0aGUgYmd3cml0ZXIgZm9yIGNsZWFuaW5nIGRpcnR5IGJ1ZmZlcnM=">
      <prototype>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_bgwriter_maxwritten_clean" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbnVtYmVyIG9mIHRpbWVzIHRoZSBiZ3dyaXRlciBzdG9wcGVkIHByb2Nlc3Npbmcgd2hlbiBpdCBoYWQgd3JpdHRlbiB0b28gbWFueSBidWZmZXJzIHdoaWxlIGNsZWFuaW5n">
      <prototype>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_bgwriter_requested_checkpoints" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbnVtYmVyIG9mIGJhY2tlbmQgcmVxdWVzdGVkIGNoZWNrcG9pbnRzIHN0YXJ0ZWQgYnkgdGhlIGJnd3JpdGVy">
      <prototype>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_bgwriter_stat_reset_time" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbGFzdCByZXNldCBmb3IgdGhlIGJnd3JpdGVy">
      <prototype>
        <parameter name="returnValue" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_bgwriter_timed_checkpoints" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbnVtYmVyIG9mIHRpbWVkIGNoZWNrcG9pbnRzIHN0YXJ0ZWQgYnkgdGhlIGJnd3JpdGVy">
      <prototype>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_blocks_fetched" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbnVtYmVyIG9mIGJsb2NrcyBmZXRjaGVk">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_blocks_hit" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbnVtYmVyIG9mIGJsb2NrcyBmb3VuZCBpbiBjYWNoZQ==">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_buf_alloc" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbnVtYmVyIG9mIGJ1ZmZlciBhbGxvY2F0aW9ucw==">
      <prototype>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_buf_fsync_backend" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbnVtYmVyIG9mIGJhY2tlbmQgYnVmZmVyIHdyaXRlcyB0aGF0IGRpZCB0aGVpciBvd24gZnN5bmM=">
      <prototype>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_buf_written_backend" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbnVtYmVyIG9mIGJ1ZmZlcnMgd3JpdHRlbiBieSBiYWNrZW5kcw==">
      <prototype>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_checkpoint_sync_time" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogY2hlY2twb2ludCB0aW1lIHNwZW50IHN5bmNocm9uaXppbmcgYnVmZmVycyB0byBkaXNrLCBpbiBtc2Vj">
      <prototype>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_checkpoint_write_time" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogY2hlY2twb2ludCB0aW1lIHNwZW50IHdyaXRpbmcgYnVmZmVycyB0byBkaXNrLCBpbiBtc2Vj">
      <prototype>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_db_blk_read_time" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogYmxvY2sgcmVhZCB0aW1lLCBpbiBtc2Vj">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_db_blk_write_time" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogYmxvY2sgd3JpdGUgdGltZSwgaW4gbXNlYw==">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_db_blocks_fetched" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogYmxvY2tzIGZldGNoZWQgZm9yIGRhdGFiYXNl">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_db_blocks_hit" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogYmxvY2tzIGZvdW5kIGluIGNhY2hlIGZvciBkYXRhYmFzZQ==">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_db_conflict_all" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogcmVjb3ZlcnkgY29uZmxpY3RzIGluIGRhdGFiYXNl">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_db_conflict_bufferpin" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogcmVjb3ZlcnkgY29uZmxpY3RzIGluIGRhdGFiYXNlIGNhdXNlZCBieSBzaGFyZWQgYnVmZmVyIHBpbg==">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_db_conflict_lock" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogcmVjb3ZlcnkgY29uZmxpY3RzIGluIGRhdGFiYXNlIGNhdXNlZCBieSByZWxhdGlvbiBsb2Nr">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_db_conflict_snapshot" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogcmVjb3ZlcnkgY29uZmxpY3RzIGluIGRhdGFiYXNlIGNhdXNlZCBieSBzbmFwc2hvdCBleHBpcnk=">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_db_conflict_startup_deadlock" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogcmVjb3ZlcnkgY29uZmxpY3RzIGluIGRhdGFiYXNlIGNhdXNlZCBieSBidWZmZXIgZGVhZGxvY2s=">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_db_conflict_tablespace" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogcmVjb3ZlcnkgY29uZmxpY3RzIGluIGRhdGFiYXNlIGNhdXNlZCBieSBkcm9wIHRhYmxlc3BhY2U=">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_db_deadlocks" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogZGVhZGxvY2tzIGRldGVjdGVkIGluIGRhdGFiYXNl">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_db_numbackends" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbnVtYmVyIG9mIGJhY2tlbmRzIGluIGRhdGFiYXNl">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_db_stat_reset_time" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbGFzdCByZXNldCBmb3IgYSBkYXRhYmFzZQ==">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_db_temp_bytes" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbnVtYmVyIG9mIGJ5dGVzIGluIHRlbXBvcmFyeSBmaWxlcyB3cml0dGVu">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_db_temp_files" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbnVtYmVyIG9mIHRlbXBvcmFyeSBmaWxlcyB3cml0dGVu">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_db_tuples_deleted" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogdHVwbGVzIGRlbGV0ZWQgaW4gZGF0YWJhc2U=">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_db_tuples_fetched" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogdHVwbGVzIGZldGNoZWQgZm9yIGRhdGFiYXNl">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_db_tuples_inserted" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogdHVwbGVzIGluc2VydGVkIGluIGRhdGFiYXNl">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_db_tuples_returned" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogdHVwbGVzIHJldHVybmVkIGZvciBkYXRhYmFzZQ==">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_db_tuples_updated" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogdHVwbGVzIHVwZGF0ZWQgaW4gZGF0YWJhc2U=">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_db_xact_commit" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogdHJhbnNhY3Rpb25zIGNvbW1pdHRlZA==">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_db_xact_rollback" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogdHJhbnNhY3Rpb25zIHJvbGxlZCBiYWNr">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_dead_tuples" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbnVtYmVyIG9mIGRlYWQgdHVwbGVz">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_function_calls" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbnVtYmVyIG9mIGZ1bmN0aW9uIGNhbGxz">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_function_self_time" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogc2VsZiBleGVjdXRpb24gdGltZSBvZiBmdW5jdGlvbiwgaW4gbXNlYw==">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_function_total_time" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogdG90YWwgZXhlY3V0aW9uIHRpbWUgb2YgZnVuY3Rpb24sIGluIG1zZWM=">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_last_analyze_time" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbGFzdCBtYW51YWwgYW5hbHl6ZSB0aW1lIGZvciBhIHRhYmxl">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_last_autoanalyze_time" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbGFzdCBhdXRvIGFuYWx5emUgdGltZSBmb3IgYSB0YWJsZQ==">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_last_autovacuum_time" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbGFzdCBhdXRvIHZhY3V1bSB0aW1lIGZvciBhIHRhYmxl">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_last_vacuum_time" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbGFzdCBtYW51YWwgdmFjdXVtIHRpbWUgZm9yIGEgdGFibGU=">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_live_tuples" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbnVtYmVyIG9mIGxpdmUgdHVwbGVz">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_numscans" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbnVtYmVyIG9mIHNjYW5zIGRvbmUgZm9yIHRhYmxlL2luZGV4">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_tuples_deleted" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbnVtYmVyIG9mIHR1cGxlcyBkZWxldGVk">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_tuples_fetched" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbnVtYmVyIG9mIHR1cGxlcyBmZXRjaGVkIGJ5IGlkeHNjYW4=">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_tuples_hot_updated" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbnVtYmVyIG9mIHR1cGxlcyBob3QgdXBkYXRlZA==">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_tuples_inserted" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbnVtYmVyIG9mIHR1cGxlcyBpbnNlcnRlZA==">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_tuples_returned" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbnVtYmVyIG9mIHR1cGxlcyByZWFkIGJ5IHNlcXNjYW4=">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_tuples_updated" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbnVtYmVyIG9mIHR1cGxlcyB1cGRhdGVk">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_vacuum_count" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbnVtYmVyIG9mIG1hbnVhbCB2YWN1dW1zIGZvciBhIHRhYmxl">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_wal_senders" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogaW5mb3JtYXRpb24gYWJvdXQgY3VycmVudGx5IGFjdGl2ZSByZXBsaWNhdGlvbg==">
      <prototype>
        <parameter name="pid" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="4" index="1"/>
        <parameter name="state" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="2"/>
        <parameter name="sent_location" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="3"/>
        <parameter name="write_location" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="4"/>
        <parameter name="flush_location" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="5"/>
        <parameter name="replay_location" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="6"/>
        <parameter name="sync_priority" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="4" index="7"/>
        <parameter name="sync_state" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="8"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_xact_blocks_fetched" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbnVtYmVyIG9mIGJsb2NrcyBmZXRjaGVkIGluIGN1cnJlbnQgdHJhbnNhY3Rpb24=">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_xact_blocks_hit" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbnVtYmVyIG9mIGJsb2NrcyBmb3VuZCBpbiBjYWNoZSBpbiBjdXJyZW50IHRyYW5zYWN0aW9u">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_xact_function_calls" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbnVtYmVyIG9mIGZ1bmN0aW9uIGNhbGxzIGluIGN1cnJlbnQgdHJhbnNhY3Rpb24=">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_xact_function_self_time" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogc2VsZiBleGVjdXRpb24gdGltZSBvZiBmdW5jdGlvbiBpbiBjdXJyZW50IHRyYW5zYWN0aW9uLCBpbiBtc2Vj">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_xact_function_total_time" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogdG90YWwgZXhlY3V0aW9uIHRpbWUgb2YgZnVuY3Rpb24gaW4gY3VycmVudCB0cmFuc2FjdGlvbiwgaW4gbXNlYw==">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_xact_numscans" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbnVtYmVyIG9mIHNjYW5zIGRvbmUgZm9yIHRhYmxlL2luZGV4IGluIGN1cnJlbnQgdHJhbnNhY3Rpb24=">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_xact_tuples_deleted" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbnVtYmVyIG9mIHR1cGxlcyBkZWxldGVkIGluIGN1cnJlbnQgdHJhbnNhY3Rpb24=">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_xact_tuples_fetched" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbnVtYmVyIG9mIHR1cGxlcyBmZXRjaGVkIGJ5IGlkeHNjYW4gaW4gY3VycmVudCB0cmFuc2FjdGlvbg==">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_xact_tuples_hot_updated" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbnVtYmVyIG9mIHR1cGxlcyBob3QgdXBkYXRlZCBpbiBjdXJyZW50IHRyYW5zYWN0aW9u">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_xact_tuples_inserted" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbnVtYmVyIG9mIHR1cGxlcyBpbnNlcnRlZCBpbiBjdXJyZW50IHRyYW5zYWN0aW9u">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_xact_tuples_returned" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbnVtYmVyIG9mIHR1cGxlcyByZWFkIGJ5IHNlcXNjYW4gaW4gY3VycmVudCB0cmFuc2FjdGlvbg==">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_get_xact_tuples_updated" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogbnVtYmVyIG9mIHR1cGxlcyB1cGRhdGVkIGluIGN1cnJlbnQgdHJhbnNhY3Rpb24=">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_reset" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogcmVzZXQgY29sbGVjdGVkIHN0YXRpc3RpY3MgZm9yIGN1cnJlbnQgZGF0YWJhc2U=">
      <prototype>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_reset_shared" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogcmVzZXQgY29sbGVjdGVkIHN0YXRpc3RpY3Mgc2hhcmVkIGFjcm9zcyB0aGUgY2x1c3Rlcg==">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_reset_single_function_counters" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogcmVzZXQgY29sbGVjdGVkIHN0YXRpc3RpY3MgZm9yIGEgc2luZ2xlIGZ1bmN0aW9uIGluIHRoZSBjdXJyZW50IGRhdGFiYXNl">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stat_reset_single_table_counters" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljczogcmVzZXQgY29sbGVjdGVkIHN0YXRpc3RpY3MgZm9yIGEgc2luZ2xlIHRhYmxlIG9yIGluZGV4IGluIHRoZSBjdXJyZW50IGRhdGFiYXNl">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_stop_backup" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZmluaXNoIHRha2luZyBhbiBvbmxpbmUgYmFja3Vw">
      <prototype>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_switch_xlog" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3dpdGNoIHRvIG5ldyB4bG9nIGZpbGU=">
      <prototype>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_table_is_visible" schema="pg_catalog" catalog="gamedb" type="2" remarks="aXMgdGFibGUgdmlzaWJsZSBpbiBzZWFyY2ggcGF0aD8=">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_table_size" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZGlzayBzcGFjZSB1c2FnZSBmb3IgdGhlIHNwZWNpZmllZCB0YWJsZSwgaW5jbHVkaW5nIFRPQVNULCBmcmVlIHNwYWNlIGFuZCB2aXNpYmlsaXR5IG1hcA==">
      <prototype>
        <parameter name="$1" sqlType="regclass" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_tablespace_databases" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2V0IE9JRHMgb2YgZGF0YWJhc2VzIGluIGEgdGFibGVzcGFjZQ==">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_tablespace_location" schema="pg_catalog" catalog="gamedb" type="2" remarks="dGFibGVzcGFjZSBsb2NhdGlvbg==">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_tablespace_size" schema="pg_catalog" catalog="gamedb" type="2" remarks="dG90YWwgZGlzayBzcGFjZSB1c2FnZSBmb3IgdGhlIHNwZWNpZmllZCB0YWJsZXNwYWNl">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_terminate_backend" schema="pg_catalog" catalog="gamedb" type="2" remarks="dGVybWluYXRlIGEgc2VydmVyIHByb2Nlc3M=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_timezone_abbrevs" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2V0IHRoZSBhdmFpbGFibGUgdGltZSB6b25lIGFiYnJldmlhdGlvbnM=">
      <prototype>
        <parameter name="abbrev" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="1"/>
        <parameter name="utc_offset" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="4" index="2"/>
        <parameter name="is_dst" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="4" index="3"/>
      </prototype>
    </procedure>
    <procedure name="pg_timezone_names" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2V0IHRoZSBhdmFpbGFibGUgdGltZSB6b25lIG5hbWVz">
      <prototype>
        <parameter name="name" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="1"/>
        <parameter name="abbrev" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="2"/>
        <parameter name="utc_offset" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="4" index="3"/>
        <parameter name="is_dst" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="4" index="4"/>
      </prototype>
    </procedure>
    <procedure name="pg_total_relation_size" schema="pg_catalog" catalog="gamedb" type="2" remarks="dG90YWwgZGlzayBzcGFjZSB1c2FnZSBmb3IgdGhlIHNwZWNpZmllZCB0YWJsZSBhbmQgYXNzb2NpYXRlZCBpbmRleGVz">
      <prototype>
        <parameter name="$1" sqlType="regclass" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_trigger_depth" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y3VycmVudCB0cmlnZ2VyIGRlcHRo">
      <prototype>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_try_advisory_lock" schema="pg_catalog" catalog="gamedb" type="2" remarks="b2J0YWluIGV4Y2x1c2l2ZSBhZHZpc29yeSBsb2NrIGlmIGF2YWlsYWJsZQ==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_try_advisory_lock_shared" schema="pg_catalog" catalog="gamedb" type="2" remarks="b2J0YWluIHNoYXJlZCBhZHZpc29yeSBsb2NrIGlmIGF2YWlsYWJsZQ==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_try_advisory_xact_lock" schema="pg_catalog" catalog="gamedb" type="2" remarks="b2J0YWluIGV4Y2x1c2l2ZSBhZHZpc29yeSBsb2NrIGlmIGF2YWlsYWJsZQ==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_try_advisory_xact_lock_shared" schema="pg_catalog" catalog="gamedb" type="2" remarks="b2J0YWluIHNoYXJlZCBhZHZpc29yeSBsb2NrIGlmIGF2YWlsYWJsZQ==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_ts_config_is_visible" schema="pg_catalog" catalog="gamedb" type="2" remarks="aXMgdGV4dCBzZWFyY2ggY29uZmlndXJhdGlvbiB2aXNpYmxlIGluIHNlYXJjaCBwYXRoPw==">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_ts_dict_is_visible" schema="pg_catalog" catalog="gamedb" type="2" remarks="aXMgdGV4dCBzZWFyY2ggZGljdGlvbmFyeSB2aXNpYmxlIGluIHNlYXJjaCBwYXRoPw==">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_ts_parser_is_visible" schema="pg_catalog" catalog="gamedb" type="2" remarks="aXMgdGV4dCBzZWFyY2ggcGFyc2VyIHZpc2libGUgaW4gc2VhcmNoIHBhdGg/">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_ts_template_is_visible" schema="pg_catalog" catalog="gamedb" type="2" remarks="aXMgdGV4dCBzZWFyY2ggdGVtcGxhdGUgdmlzaWJsZSBpbiBzZWFyY2ggcGF0aD8=">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_type_is_visible" schema="pg_catalog" catalog="gamedb" type="2" remarks="aXMgdHlwZSB2aXNpYmxlIGluIHNlYXJjaCBwYXRoPw==">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_typeof" schema="pg_catalog" catalog="gamedb" type="2" remarks="dHlwZSBvZiB0aGUgYXJndW1lbnQ=">
      <prototype>
        <parameter name="$1" sqlType="any" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="regtype" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_xlog_location_diff" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZGlmZmVyZW5jZSBpbiBieXRlcywgZ2l2ZW4gdHdvIHhsb2cgbG9jYXRpb25z">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_xlog_replay_pause" schema="pg_catalog" catalog="gamedb" type="2" remarks="cGF1c2UgeGxvZyByZXBsYXk=">
      <prototype>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_xlog_replay_resume" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVzdW1lIHhsb2cgcmVwbGF5LCBpZiBpdCB3YXMgcGF1c2Vk">
      <prototype>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_xlogfile_name" schema="pg_catalog" catalog="gamedb" type="2" remarks="eGxvZyBmaWxlbmFtZSwgZ2l2ZW4gYW4geGxvZyBsb2NhdGlvbg==">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pg_xlogfile_name_offset" schema="pg_catalog" catalog="gamedb" type="2" remarks="eGxvZyBmaWxlbmFtZSBhbmQgYnl0ZSBvZmZzZXQsIGdpdmVuIGFuIHhsb2cgbG9jYXRpb24=">
      <prototype>
        <parameter name="wal_location" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="file_name" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="2"/>
        <parameter name="file_offset" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="4" index="3"/>
      </prototype>
    </procedure>
    <procedure name="pi" schema="pg_catalog" catalog="gamedb" type="2" remarks="UEk=">
      <prototype>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="plainto_tsquery" schema="pg_catalog" catalog="gamedb" type="2" remarks="dHJhbnNmb3JtIHRvIHRzcXVlcnk=">
      <prototype>
        <parameter name="$1" sqlType="regconfig" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="plpgsql_call_handler" schema="pg_catalog" catalog="gamedb" type="2">
      <prototype>
        <parameter name="returnValue" sqlType="language_handler" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="plpgsql_inline_handler" schema="pg_catalog" catalog="gamedb" type="2">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="plpgsql_validator" schema="pg_catalog" catalog="gamedb" type="2">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="point" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y2VudGVyIG9m">
      <prototype>
        <parameter name="$1" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="lseg" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="point_above" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPl4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="point_add" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="point_below" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPF4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="point_distance" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPC0+IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="point_div" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="point_eq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2Ygfj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="point_horiz" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPy0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="point_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="point_left" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPDwgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="point_mul" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="point_ne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="point_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="point_recv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="point_right" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="point_send" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="point_sub" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="point_vert" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgP3wgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="poly_above" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgfD4+IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="poly_below" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPDx8IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="poly_center" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgQEAgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="poly_contain" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgQD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="poly_contain_pt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgQD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="poly_contained" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPEAgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="poly_distance" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPC0+IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="poly_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="poly_left" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPDwgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="poly_npoints" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgIyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="poly_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="poly_overabove" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgfCY+IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="poly_overbelow" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgJjx8IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="poly_overlap" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgJiYgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="poly_overleft" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgJjwgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="poly_overright" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgJj4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="poly_recv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="poly_right" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="poly_same" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2Ygfj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="poly_send" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="polygon" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCBjaXJjbGUgdG8gMTItdmVydGV4IHBvbHlnb24=">
      <prototype>
        <parameter name="$1" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="popen" schema="pg_catalog" catalog="gamedb" type="2" remarks="b3BlbiBwYXRo">
      <prototype>
        <parameter name="$1" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="path" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="position" schema="pg_catalog" catalog="gamedb" type="2" remarks="cG9zaXRpb24gb2Ygc3Vic3RyaW5n">
      <prototype>
        <parameter name="$1" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="$2" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="1"/>
        <parameter name="$2" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="positionjoinsel" schema="pg_catalog" catalog="gamedb" type="2" remarks="am9pbiBzZWxlY3Rpdml0eSBmb3IgcG9zaXRpb24tY29tcGFyaXNvbiBvcGVyYXRvcnM=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="positionsel" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVzdHJpY3Rpb24gc2VsZWN0aXZpdHkgZm9yIHBvc2l0aW9uLWNvbXBhcmlzb24gb3BlcmF0b3Jz">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="4"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="postgresql_fdw_validator" schema="pg_catalog" catalog="gamedb" type="2" remarks="KGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="_text" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pow" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZXhwb25lbnRpYXRpb24=">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="$2" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="power" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZXhwb25lbnRpYXRpb24=">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="$2" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="prsd_end" schema="pg_catalog" catalog="gamedb" type="2" remarks="KGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="prsd_headline" schema="pg_catalog" catalog="gamedb" type="2" remarks="KGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="prsd_lextype" schema="pg_catalog" catalog="gamedb" type="2" remarks="KGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="prsd_nexttoken" schema="pg_catalog" catalog="gamedb" type="2" remarks="KGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="prsd_start" schema="pg_catalog" catalog="gamedb" type="2" remarks="KGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pt_contained_circle" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPEAgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="pt_contained_poly" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPEAgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="polygon" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="query_to_xml" schema="pg_catalog" catalog="gamedb" type="2" remarks="bWFwIHF1ZXJ5IHJlc3VsdCB0byBYTUw=">
      <prototype>
        <parameter name="query" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="nulls" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="tableforest" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="3"/>
        <parameter name="targetns" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="4"/>
        <parameter name="returnValue" sqlType="xml" precision="0" scale="0" nullable="true" jdbcType="2009" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="query_to_xml_and_xmlschema" schema="pg_catalog" catalog="gamedb" type="2" remarks="bWFwIHF1ZXJ5IHJlc3VsdCBhbmQgc3RydWN0dXJlIHRvIFhNTCBhbmQgWE1MIFNjaGVtYQ==">
      <prototype>
        <parameter name="query" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="nulls" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="tableforest" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="3"/>
        <parameter name="targetns" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="4"/>
        <parameter name="returnValue" sqlType="xml" precision="0" scale="0" nullable="true" jdbcType="2009" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="query_to_xmlschema" schema="pg_catalog" catalog="gamedb" type="2" remarks="bWFwIHF1ZXJ5IHJlc3VsdCBzdHJ1Y3R1cmUgdG8gWE1MIFNjaGVtYQ==">
      <prototype>
        <parameter name="query" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="nulls" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="tableforest" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="3"/>
        <parameter name="targetns" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="4"/>
        <parameter name="returnValue" sqlType="xml" precision="0" scale="0" nullable="true" jdbcType="2009" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="querytree" schema="pg_catalog" catalog="gamedb" type="2" remarks="c2hvdyByZWFsIHVzZWZ1bCBxdWVyeSBmb3IgR2lTVCBpbmRleA==">
      <prototype>
        <parameter name="$1" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="quote_ident" schema="pg_catalog" catalog="gamedb" type="2" remarks="cXVvdGUgYW4gaWRlbnRpZmllciBmb3IgdXNhZ2UgaW4gYSBxdWVyeXN0cmluZw==">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="quote_literal" schema="pg_catalog" catalog="gamedb" type="2" remarks="cXVvdGUgYSBkYXRhIHZhbHVlIGZvciB1c2FnZSBpbiBhIHF1ZXJ5c3RyaW5n">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="quote_nullable" schema="pg_catalog" catalog="gamedb" type="2" remarks="cXVvdGUgYSBwb3NzaWJseS1udWxsIGRhdGEgdmFsdWUgZm9yIHVzYWdlIGluIGEgcXVlcnlzdHJpbmc=">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="radians" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZGVncmVlcyB0byByYWRpYW5z">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="radius" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmFkaXVzIG9mIGNpcmNsZQ==">
      <prototype>
        <parameter name="$1" sqlType="circle" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="random" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmFuZG9tIHZhbHVl">
      <prototype>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="range_adjacent" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLXwtIG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="range_after" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="range_before" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPDwgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="range_cmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="range_contained_by" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPEAgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="range_contains" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgQD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="range_contains_elem" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgQD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="range_eq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="range_ge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="range_gist_compress" schema="pg_catalog" catalog="gamedb" type="2" remarks="R2lTVCBzdXBwb3J0">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="range_gist_consistent" schema="pg_catalog" catalog="gamedb" type="2" remarks="R2lTVCBzdXBwb3J0">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="$4" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="range_gist_decompress" schema="pg_catalog" catalog="gamedb" type="2" remarks="R2lTVCBzdXBwb3J0">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="range_gist_penalty" schema="pg_catalog" catalog="gamedb" type="2" remarks="R2lTVCBzdXBwb3J0">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="range_gist_picksplit" schema="pg_catalog" catalog="gamedb" type="2" remarks="R2lTVCBzdXBwb3J0">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="range_gist_same" schema="pg_catalog" catalog="gamedb" type="2" remarks="R2lTVCBzdXBwb3J0">
      <prototype>
        <parameter name="$1" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="range_gist_union" schema="pg_catalog" catalog="gamedb" type="2" remarks="R2lTVCBzdXBwb3J0">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="range_gt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="range_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="range_intersect" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="range_le" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="range_lt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="range_minus" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="range_ne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="range_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="range_overlaps" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgJiYgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="range_overleft" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgJjwgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="range_overright" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgJj4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="range_recv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="range_send" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="range_typanalyze" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmFuZ2UgdHlwYW5hbHl6ZQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="range_union" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="rangesel" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVzdHJpY3Rpb24gc2VsZWN0aXZpdHkgZm9yIHJhbmdlIG9wZXJhdG9ycw==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="4"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="rank" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZWdlciByYW5rIHdpdGggZ2Fwcw==">
      <prototype>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="record_eq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="record" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="record" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="record_ge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="record" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="record" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="record_gt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="record" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="record" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="record_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="record" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="record_le" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="record" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="record" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="record_lt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="record" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="record" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="record_ne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="record" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="record" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="record_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="record" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="record_recv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="record" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="record_send" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="record" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regclass" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCB0ZXh0IHRvIHJlZ2NsYXNz">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="regclass" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regclassin" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="regclass" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regclassout" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="regclass" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regclassrecv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="regclass" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regclasssend" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="regclass" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regconfigin" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="regconfig" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regconfigout" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="regconfig" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regconfigrecv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="regconfig" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regconfigsend" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="regconfig" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regdictionaryin" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="regdictionary" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regdictionaryout" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="regdictionary" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regdictionaryrecv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="regdictionary" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regdictionarysend" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="regdictionary" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regexeqjoinsel" schema="pg_catalog" catalog="gamedb" type="2" remarks="am9pbiBzZWxlY3Rpdml0eSBvZiByZWdleCBtYXRjaA==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regexeqsel" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVzdHJpY3Rpb24gc2VsZWN0aXZpdHkgb2YgcmVnZXggbWF0Y2g=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="4"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regexnejoinsel" schema="pg_catalog" catalog="gamedb" type="2" remarks="am9pbiBzZWxlY3Rpdml0eSBvZiByZWdleCBub24tbWF0Y2g=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regexnesel" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVzdHJpY3Rpb24gc2VsZWN0aXZpdHkgb2YgcmVnZXggbm9uLW1hdGNo">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="4"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regexp_matches" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZmluZCBhbGwgbWF0Y2ggZ3JvdXBzIGZvciByZWdleHA=">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="_text" precision="0" scale="0" nullable="true" jdbcType="2003" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="_text" precision="0" scale="0" nullable="true" jdbcType="2003" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regexp_replace" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVwbGFjZSB0ZXh0IHVzaW5nIHJlZ2V4cA==">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="$4" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="4"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regexp_split_to_array" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3BsaXQgc3RyaW5nIGJ5IHBhdHRlcm4=">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="_text" precision="0" scale="0" nullable="true" jdbcType="2003" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="_text" precision="0" scale="0" nullable="true" jdbcType="2003" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regexp_split_to_table" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3BsaXQgc3RyaW5nIGJ5IHBhdHRlcm4=">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regoperatorin" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="regoperator" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regoperatorout" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="regoperator" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regoperatorrecv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="regoperator" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regoperatorsend" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="regoperator" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regoperin" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="regoper" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regoperout" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="regoper" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regoperrecv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="regoper" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regopersend" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="regoper" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regprocedurein" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="regprocedure" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regprocedureout" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="regprocedure" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regprocedurerecv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="regprocedure" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regproceduresend" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="regprocedure" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regprocin" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="regproc" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regprocout" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="regproc" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regprocrecv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="regproc" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regprocsend" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="regproc" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regr_avgx" schema="pg_catalog" catalog="gamedb" type="2" remarks="YXZlcmFnZSBvZiB0aGUgaW5kZXBlbmRlbnQgdmFyaWFibGUgKHN1bShYKS9OKQ==">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regr_avgy" schema="pg_catalog" catalog="gamedb" type="2" remarks="YXZlcmFnZSBvZiB0aGUgZGVwZW5kZW50IHZhcmlhYmxlIChzdW0oWSkvTik=">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regr_count" schema="pg_catalog" catalog="gamedb" type="2" remarks="bnVtYmVyIG9mIGlucHV0IHJvd3MgaW4gd2hpY2ggYm90aCBleHByZXNzaW9ucyBhcmUgbm90IG51bGw=">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regr_intercept" schema="pg_catalog" catalog="gamedb" type="2" remarks="eS1pbnRlcmNlcHQgb2YgdGhlIGxlYXN0LXNxdWFyZXMtZml0IGxpbmVhciBlcXVhdGlvbiBkZXRlcm1pbmVkIGJ5IHRoZSAoWCwgWSkgcGFpcnM=">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regr_r2" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3F1YXJlIG9mIHRoZSBjb3JyZWxhdGlvbiBjb2VmZmljaWVudA==">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regr_slope" schema="pg_catalog" catalog="gamedb" type="2" remarks="c2xvcGUgb2YgdGhlIGxlYXN0LXNxdWFyZXMtZml0IGxpbmVhciBlcXVhdGlvbiBkZXRlcm1pbmVkIGJ5IHRoZSAoWCwgWSkgcGFpcnM=">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regr_sxx" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3VtIG9mIHNxdWFyZXMgb2YgdGhlIGluZGVwZW5kZW50IHZhcmlhYmxlIChzdW0oWF4yKSAtIHN1bShYKV4yL04p">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regr_sxy" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3VtIG9mIHByb2R1Y3RzIG9mIGluZGVwZW5kZW50IHRpbWVzIGRlcGVuZGVudCB2YXJpYWJsZSAoc3VtKFgqWSkgLSBzdW0oWCkgKiBzdW0oWSkvTik=">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regr_syy" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3VtIG9mIHNxdWFyZXMgb2YgdGhlIGRlcGVuZGVudCB2YXJpYWJsZSAoc3VtKFleMikgLSBzdW0oWSleMi9OKQ==">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regtypein" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="regtype" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regtypeout" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="regtype" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regtyperecv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="regtype" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="regtypesend" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="regtype" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="reltime" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCBpbnRlcnZhbCB0byByZWx0aW1l">
      <prototype>
        <parameter name="$1" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="reltime" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="reltimeeq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="reltime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="reltime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="reltimege" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="reltime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="reltime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="reltimegt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="reltime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="reltime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="reltimein" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="reltime" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="reltimele" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="reltime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="reltime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="reltimelt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="reltime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="reltime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="reltimene" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="reltime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="reltime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="reltimeout" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="reltime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="reltimerecv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="reltime" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="reltimesend" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="reltime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="repeat" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVwbGljYXRlIHN0cmluZyBuIHRpbWVz">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="replace" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVwbGFjZSBhbGwgb2NjdXJyZW5jZXMgaW4gc3RyaW5nIG9mIG9sZF9zdWJzdHIgd2l0aCBuZXdfc3Vic3Ry">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="reverse" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmV2ZXJzZSB0ZXh0">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="right" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZXh0cmFjdCB0aGUgbGFzdCBuIGNoYXJhY3RlcnM=">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="round" schema="pg_catalog" catalog="gamedb" type="2" remarks="dmFsdWUgcm91bmRlZCB0byAnc2NhbGUnIG9mIHplcm8=">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="row_number" schema="pg_catalog" catalog="gamedb" type="2" remarks="cm93IG51bWJlciB3aXRoaW4gcGFydGl0aW9u">
      <prototype>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="row_to_json" schema="pg_catalog" catalog="gamedb" type="2" remarks="bWFwIHJvdyB0byBqc29uIHdpdGggb3B0aW9uYWwgcHJldHR5IHByaW50aW5n">
      <prototype>
        <parameter name="$1" sqlType="record" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="json" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="record" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="json" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="rpad" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmlnaHQtcGFkIHN0cmluZyB0byBsZW5ndGg=">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="rtrim" schema="pg_catalog" catalog="gamedb" type="2" remarks="dHJpbSBzcGFjZXMgZnJvbSByaWdodCBlbmQgb2Ygc3RyaW5n">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="scalargtjoinsel" schema="pg_catalog" catalog="gamedb" type="2" remarks="am9pbiBzZWxlY3Rpdml0eSBvZiA+IGFuZCByZWxhdGVkIG9wZXJhdG9ycyBvbiBzY2FsYXIgZGF0YXR5cGVz">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="scalargtsel" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVzdHJpY3Rpb24gc2VsZWN0aXZpdHkgb2YgPiBhbmQgcmVsYXRlZCBvcGVyYXRvcnMgb24gc2NhbGFyIGRhdGF0eXBlcw==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="4"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="scalarltjoinsel" schema="pg_catalog" catalog="gamedb" type="2" remarks="am9pbiBzZWxlY3Rpdml0eSBvZiA8IGFuZCByZWxhdGVkIG9wZXJhdG9ycyBvbiBzY2FsYXIgZGF0YXR5cGVz">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="scalarltsel" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVzdHJpY3Rpb24gc2VsZWN0aXZpdHkgb2YgPCBhbmQgcmVsYXRlZCBvcGVyYXRvcnMgb24gc2NhbGFyIGRhdGF0eXBlcw==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="4"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="schema_to_xml" schema="pg_catalog" catalog="gamedb" type="2" remarks="bWFwIHNjaGVtYSBjb250ZW50cyB0byBYTUw=">
      <prototype>
        <parameter name="schema" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="nulls" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="tableforest" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="3"/>
        <parameter name="targetns" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="4"/>
        <parameter name="returnValue" sqlType="xml" precision="0" scale="0" nullable="true" jdbcType="2009" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="schema_to_xml_and_xmlschema" schema="pg_catalog" catalog="gamedb" type="2" remarks="bWFwIHNjaGVtYSBjb250ZW50cyBhbmQgc3RydWN0dXJlIHRvIFhNTCBhbmQgWE1MIFNjaGVtYQ==">
      <prototype>
        <parameter name="schema" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="nulls" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="tableforest" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="3"/>
        <parameter name="targetns" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="4"/>
        <parameter name="returnValue" sqlType="xml" precision="0" scale="0" nullable="true" jdbcType="2009" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="schema_to_xmlschema" schema="pg_catalog" catalog="gamedb" type="2" remarks="bWFwIHNjaGVtYSBzdHJ1Y3R1cmUgdG8gWE1MIFNjaGVtYQ==">
      <prototype>
        <parameter name="schema" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="nulls" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="tableforest" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="3"/>
        <parameter name="targetns" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="4"/>
        <parameter name="returnValue" sqlType="xml" precision="0" scale="0" nullable="true" jdbcType="2009" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="session_user" schema="pg_catalog" catalog="gamedb" type="2" remarks="c2Vzc2lvbiB1c2VyIG5hbWU=">
      <prototype>
        <parameter name="returnValue" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="set_bit" schema="pg_catalog" catalog="gamedb" type="2" remarks="c2V0IGJpdA==">
      <prototype>
        <parameter name="$1" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="set_byte" schema="pg_catalog" catalog="gamedb" type="2" remarks="c2V0IGJ5dGU=">
      <prototype>
        <parameter name="$1" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="set_config" schema="pg_catalog" catalog="gamedb" type="2" remarks="U0VUIFggYXMgYSBmdW5jdGlvbg==">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="3"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="set_masklen" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y2hhbmdlIG5ldG1hc2sgb2YgY2lkcg==">
      <prototype>
        <parameter name="$1" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="cidr" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="cidr" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="setseed" schema="pg_catalog" catalog="gamedb" type="2" remarks="c2V0IHJhbmRvbSBzZWVk">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="setval" schema="pg_catalog" catalog="gamedb" type="2" remarks="c2V0IHNlcXVlbmNlIHZhbHVlIGFuZCBpc19jYWxsZWQgc3RhdHVz">
      <prototype>
        <parameter name="$1" sqlType="regclass" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="regclass" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="3"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="setweight" schema="pg_catalog" catalog="gamedb" type="2" remarks="c2V0IHdlaWdodCBvZiBsZXhlbWUncyBlbnRyaWVz">
      <prototype>
        <parameter name="$1" sqlType="tsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="char" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="2"/>
        <parameter name="returnValue" sqlType="tsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="shell_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="opaque" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="shell_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="opaque" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="shift_jis_2004_to_euc_jis_2004" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgU0hJRlRfSklTXzIwMDQgdG8gRVVDX0pJU18yMDA0">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="shift_jis_2004_to_utf8" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgU0hJRlRfSklTXzIwMDQgdG8gVVRGOA==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="shobj_description" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2V0IGRlc2NyaXB0aW9uIGZvciBvYmplY3QgaWQgYW5kIHNoYXJlZCBjYXRhbG9nIG5hbWU=">
      <prototype>
        <parameter name="$1" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="sign" schema="pg_catalog" catalog="gamedb" type="2" remarks="c2lnbiBvZiB2YWx1ZQ==">
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="similar_escape" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCBTUUw5OSByZWdleHAgcGF0dGVybiB0byBQT1NJWCBzdHlsZQ==">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="sin" schema="pg_catalog" catalog="gamedb" type="2" remarks="c2luZQ==">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="sjis_to_euc_jp" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgU0pJUyB0byBFVUNfSlA=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="sjis_to_mic" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgU0pJUyB0byBNVUxFX0lOVEVSTkFM">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="sjis_to_utf8" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgU0pJUyB0byBVVEY4">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="slope" schema="pg_catalog" catalog="gamedb" type="2" remarks="c2xvcGUgYmV0d2VlbiBwb2ludHM=">
      <prototype>
        <parameter name="$1" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="point" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="smgreq" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RvcmFnZSBtYW5hZ2Vy">
      <prototype>
        <parameter name="$1" sqlType="smgr" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="smgr" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="smgrin" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="smgr" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="smgrne" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RvcmFnZSBtYW5hZ2Vy">
      <prototype>
        <parameter name="$1" sqlType="smgr" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="smgr" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="smgrout" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="smgr" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="spg_kd_choose" schema="pg_catalog" catalog="gamedb" type="2" remarks="U1AtR2lTVCBzdXBwb3J0IGZvciBrLWQgdHJlZSBvdmVyIHBvaW50">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="spg_kd_config" schema="pg_catalog" catalog="gamedb" type="2" remarks="U1AtR2lTVCBzdXBwb3J0IGZvciBrLWQgdHJlZSBvdmVyIHBvaW50">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="spg_kd_inner_consistent" schema="pg_catalog" catalog="gamedb" type="2" remarks="U1AtR2lTVCBzdXBwb3J0IGZvciBrLWQgdHJlZSBvdmVyIHBvaW50">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="spg_kd_picksplit" schema="pg_catalog" catalog="gamedb" type="2" remarks="U1AtR2lTVCBzdXBwb3J0IGZvciBrLWQgdHJlZSBvdmVyIHBvaW50">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="spg_quad_choose" schema="pg_catalog" catalog="gamedb" type="2" remarks="U1AtR2lTVCBzdXBwb3J0IGZvciBxdWFkIHRyZWUgb3ZlciBwb2ludA==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="spg_quad_config" schema="pg_catalog" catalog="gamedb" type="2" remarks="U1AtR2lTVCBzdXBwb3J0IGZvciBxdWFkIHRyZWUgb3ZlciBwb2ludA==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="spg_quad_inner_consistent" schema="pg_catalog" catalog="gamedb" type="2" remarks="U1AtR2lTVCBzdXBwb3J0IGZvciBxdWFkIHRyZWUgb3ZlciBwb2ludA==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="spg_quad_leaf_consistent" schema="pg_catalog" catalog="gamedb" type="2" remarks="U1AtR2lTVCBzdXBwb3J0IGZvciBxdWFkIHRyZWUgYW5kIGstZCB0cmVlIG92ZXIgcG9pbnQ=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="spg_quad_picksplit" schema="pg_catalog" catalog="gamedb" type="2" remarks="U1AtR2lTVCBzdXBwb3J0IGZvciBxdWFkIHRyZWUgb3ZlciBwb2ludA==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="spg_range_quad_choose" schema="pg_catalog" catalog="gamedb" type="2" remarks="U1AtR2lTVCBzdXBwb3J0IGZvciBxdWFkIHRyZWUgb3ZlciByYW5nZQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="spg_range_quad_config" schema="pg_catalog" catalog="gamedb" type="2" remarks="U1AtR2lTVCBzdXBwb3J0IGZvciBxdWFkIHRyZWUgb3ZlciByYW5nZQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="spg_range_quad_inner_consistent" schema="pg_catalog" catalog="gamedb" type="2" remarks="U1AtR2lTVCBzdXBwb3J0IGZvciBxdWFkIHRyZWUgb3ZlciByYW5nZQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="spg_range_quad_leaf_consistent" schema="pg_catalog" catalog="gamedb" type="2" remarks="U1AtR2lTVCBzdXBwb3J0IGZvciBxdWFkIHRyZWUgb3ZlciByYW5nZQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="spg_range_quad_picksplit" schema="pg_catalog" catalog="gamedb" type="2" remarks="U1AtR2lTVCBzdXBwb3J0IGZvciBxdWFkIHRyZWUgb3ZlciByYW5nZQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="spg_text_choose" schema="pg_catalog" catalog="gamedb" type="2" remarks="U1AtR2lTVCBzdXBwb3J0IGZvciByYWRpeCB0cmVlIG92ZXIgdGV4dA==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="spg_text_config" schema="pg_catalog" catalog="gamedb" type="2" remarks="U1AtR2lTVCBzdXBwb3J0IGZvciByYWRpeCB0cmVlIG92ZXIgdGV4dA==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="spg_text_inner_consistent" schema="pg_catalog" catalog="gamedb" type="2" remarks="U1AtR2lTVCBzdXBwb3J0IGZvciByYWRpeCB0cmVlIG92ZXIgdGV4dA==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="spg_text_leaf_consistent" schema="pg_catalog" catalog="gamedb" type="2" remarks="U1AtR2lTVCBzdXBwb3J0IGZvciByYWRpeCB0cmVlIG92ZXIgdGV4dA==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="spg_text_picksplit" schema="pg_catalog" catalog="gamedb" type="2" remarks="U1AtR2lTVCBzdXBwb3J0IGZvciByYWRpeCB0cmVlIG92ZXIgdGV4dA==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="spgbeginscan" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3BnaXN0KGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="spgbuild" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3BnaXN0KGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="spgbuildempty" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3BnaXN0KGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="spgbulkdelete" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3BnaXN0KGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="spgcanreturn" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3BnaXN0KGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="spgcostestimate" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3BnaXN0KGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="$6" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="6"/>
        <parameter name="$7" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="7"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="spgendscan" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3BnaXN0KGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="spggetbitmap" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3BnaXN0KGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="spggettuple" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3BnaXN0KGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="spginsert" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3BnaXN0KGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="$6" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="6"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="spgmarkpos" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3BnaXN0KGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="spgoptions" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3BnaXN0KGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="_text" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="$2" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="spgrescan" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3BnaXN0KGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="spgrestrpos" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3BnaXN0KGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="spgvacuumcleanup" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3BnaXN0KGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="split_part" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3BsaXQgc3RyaW5nIGJ5IGZpZWxkX3NlcCBhbmQgcmV0dXJuIGZpZWxkX251bQ==">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="sqrt" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3F1YXJlIHJvb3Q=">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="statement_timestamp" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y3VycmVudCBzdGF0ZW1lbnQgdGltZQ==">
      <prototype>
        <parameter name="returnValue" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="stddev" schema="pg_catalog" catalog="gamedb" type="2" remarks="aGlzdG9yaWNhbCBhbGlhcyBmb3Igc3RkZGV2X3NhbXA=">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="stddev_pop" schema="pg_catalog" catalog="gamedb" type="2" remarks="cG9wdWxhdGlvbiBzdGFuZGFyZCBkZXZpYXRpb24gb2YgbnVtZXJpYyBpbnB1dCB2YWx1ZXM=">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="stddev_samp" schema="pg_catalog" catalog="gamedb" type="2" remarks="c2FtcGxlIHN0YW5kYXJkIGRldmlhdGlvbiBvZiBudW1lcmljIGlucHV0IHZhbHVlcw==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="string_agg" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29uY2F0ZW5hdGUgYWdncmVnYXRlIGlucHV0IGludG8gYSBieXRlYQ==">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="1"/>
        <parameter name="$2" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="string_agg_finalfn" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIGZpbmFsIGZ1bmN0aW9u">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="string_agg_transfn" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIHRyYW5zaXRpb24gZnVuY3Rpb24=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="string_to_array" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3BsaXQgZGVsaW1pdGVkIHRleHQgaW50byB0ZXh0W10=">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="_text" precision="0" scale="0" nullable="true" jdbcType="2003" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="_text" precision="0" scale="0" nullable="true" jdbcType="2003" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="strip" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RyaXAgcG9zaXRpb24gaW5mb3JtYXRpb24=">
      <prototype>
        <parameter name="$1" sqlType="tsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="tsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="strpos" schema="pg_catalog" catalog="gamedb" type="2" remarks="cG9zaXRpb24gb2Ygc3Vic3RyaW5n">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="substr" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZXh0cmFjdCBwb3J0aW9uIG9mIHN0cmluZw==">
      <prototype>
        <parameter name="$1" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="substring" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZXh0cmFjdCBwb3J0aW9uIG9mIHN0cmluZw==">
      <prototype>
        <parameter name="$1" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bit" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="sum" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3VtIGFzIG51bWVyaWMgYWNyb3NzIGFsbCBudW1lcmljIGlucHV0IHZhbHVlcw==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="money" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="suppress_redundant_updates_trigger" schema="pg_catalog" catalog="gamedb" type="2" remarks="dHJpZ2dlciB0byBzdXBwcmVzcyB1cGRhdGVzIHdoZW4gbmV3IGFuZCBvbGQgcmVjb3JkcyBtYXRjaA==">
      <prototype>
        <parameter name="returnValue" sqlType="trigger" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="table_to_xml" schema="pg_catalog" catalog="gamedb" type="2" remarks="bWFwIHRhYmxlIGNvbnRlbnRzIHRvIFhNTA==">
      <prototype>
        <parameter name="tbl" sqlType="regclass" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="nulls" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="tableforest" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="3"/>
        <parameter name="targetns" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="4"/>
        <parameter name="returnValue" sqlType="xml" precision="0" scale="0" nullable="true" jdbcType="2009" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="table_to_xml_and_xmlschema" schema="pg_catalog" catalog="gamedb" type="2" remarks="bWFwIHRhYmxlIGNvbnRlbnRzIGFuZCBzdHJ1Y3R1cmUgdG8gWE1MIGFuZCBYTUwgU2NoZW1h">
      <prototype>
        <parameter name="tbl" sqlType="regclass" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="nulls" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="tableforest" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="3"/>
        <parameter name="targetns" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="4"/>
        <parameter name="returnValue" sqlType="xml" precision="0" scale="0" nullable="true" jdbcType="2009" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="table_to_xmlschema" schema="pg_catalog" catalog="gamedb" type="2" remarks="bWFwIHRhYmxlIHN0cnVjdHVyZSB0byBYTUwgU2NoZW1h">
      <prototype>
        <parameter name="tbl" sqlType="regclass" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="nulls" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="2"/>
        <parameter name="tableforest" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="3"/>
        <parameter name="targetns" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="4"/>
        <parameter name="returnValue" sqlType="xml" precision="0" scale="0" nullable="true" jdbcType="2009" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tan" schema="pg_catalog" catalog="gamedb" type="2" remarks="dGFuZ2VudA==">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="text" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCBjaGFyIHRvIHRleHQ=">
      <prototype>
        <parameter name="$1" sqlType="xml" precision="0" scale="0" nullable="true" jdbcType="2009" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="bpchar" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="inet" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="char" precision="0" scale="0" nullable="true" jdbcType="1" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="text_ge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="text_gt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="text_larger" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGFyZ2VyIG9mIHR3bw==">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="text_le" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="text_lt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="text_pattern_ge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2Ygfj49fiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="text_pattern_gt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2Ygfj5+IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="text_pattern_le" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2Ygfjw9fiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="text_pattern_lt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2Ygfjx+IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="text_smaller" schema="pg_catalog" catalog="gamedb" type="2" remarks="c21hbGxlciBvZiB0d28=">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="textanycat" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgfHwgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="anynonarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="textcat" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgfHwgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="texteq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="texticlike" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2Ygfn4qIG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="texticnlike" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgIX5+KiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="texticregexeq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2Ygfiogb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="texticregexne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgIX4qIG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="textin" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="textlen" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVuZ3Ro">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="textlike" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2Ygfn4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="textne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="textnlike" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgIX5+IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="textout" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="textrecv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="textregexeq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgfiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="textregexne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgIX4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="textsend" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="thesaurus_init" schema="pg_catalog" catalog="gamedb" type="2" remarks="KGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="thesaurus_lexize" schema="pg_catalog" catalog="gamedb" type="2" remarks="KGludGVybmFsKQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tideq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="tid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tidge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="tid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tidgt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="tid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tidin" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="tid" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tidlarger" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGFyZ2VyIG9mIHR3bw==">
      <prototype>
        <parameter name="$1" sqlType="tid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="tid" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tidle" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="tid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tidlt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="tid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tidne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="tid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tidout" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="tid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tidrecv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="tid" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tidsend" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="tid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tidsmaller" schema="pg_catalog" catalog="gamedb" type="2" remarks="c21hbGxlciBvZiB0d28=">
      <prototype>
        <parameter name="$1" sqlType="tid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="tid" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="time" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCB0aW1lIHdpdGggdGltZSB6b25lIHRvIHRpbWU=">
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="returnValue" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="returnValue" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="returnValue" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="time_cmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="$2" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="time_eq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="$2" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="time_ge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="$2" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="time_gt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="$2" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="time_hash" schema="pg_catalog" catalog="gamedb" type="2" remarks="aGFzaA==">
      <prototype>
        <parameter name="$1" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="time_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="time_larger" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGFyZ2VyIG9mIHR3bw==">
      <prototype>
        <parameter name="$1" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="$2" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="2"/>
        <parameter name="returnValue" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="time_le" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="$2" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="time_lt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="$2" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="time_mi_interval" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="$2" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="time_mi_time" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="$2" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="2"/>
        <parameter name="returnValue" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="time_ne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="$2" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="time_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="time_pl_interval" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="$2" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="time_recv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="time_send" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="time_smaller" schema="pg_catalog" catalog="gamedb" type="2" remarks="c21hbGxlciBvZiB0d28=">
      <prototype>
        <parameter name="$1" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="$2" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="2"/>
        <parameter name="returnValue" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="time_transform" schema="pg_catalog" catalog="gamedb" type="2" remarks="dHJhbnNmb3JtIGEgdGltZSBsZW5ndGggY29lcmNpb24=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timedate_pl" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="$2" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="2"/>
        <parameter name="returnValue" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timemi" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="reltime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timenow" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y3VycmVudCBkYXRlIGFuZCB0aW1lIChhYnN0aW1lKQ==">
      <prototype>
        <parameter name="returnValue" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timeofday" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y3VycmVudCBkYXRlIGFuZCB0aW1lIC0gaW5jcmVtZW50cyBkdXJpbmcgdHJhbnNhY3Rpb25z">
      <prototype>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timepl" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="reltime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamp" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCB0aW1lc3RhbXAgd2l0aCB0aW1lIHpvbmUgdG8gdGltZXN0YW1w">
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="returnValue" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="$2" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="2"/>
        <parameter name="returnValue" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="returnValue" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamp_cmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamp_cmp_date" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamp_cmp_timestamptz" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamp_eq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamp_eq_date" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamp_eq_timestamptz" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamp_ge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamp_ge_date" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamp_ge_timestamptz" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamp_gt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamp_gt_date" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamp_gt_timestamptz" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamp_hash" schema="pg_catalog" catalog="gamedb" type="2" remarks="aGFzaA==">
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamp_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamp_larger" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGFyZ2VyIG9mIHR3bw==">
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamp_le" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamp_le_date" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamp_le_timestamptz" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamp_lt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamp_lt_date" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamp_lt_timestamptz" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamp_mi" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamp_mi_interval" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamp_ne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamp_ne_date" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamp_ne_timestamptz" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamp_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamp_pl_interval" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamp_recv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamp_send" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamp_smaller" schema="pg_catalog" catalog="gamedb" type="2" remarks="c21hbGxlciBvZiB0d28=">
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamp_sortsupport" schema="pg_catalog" catalog="gamedb" type="2" remarks="c29ydCBzdXBwb3J0">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamp_transform" schema="pg_catalog" catalog="gamedb" type="2" remarks="dHJhbnNmb3JtIGEgdGltZXN0YW1wIGxlbmd0aCBjb2VyY2lvbg==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamptypmodin" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9PIHR5cG1vZA==">
      <prototype>
        <parameter name="$1" sqlType="_cstring" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamptypmodout" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9PIHR5cG1vZA==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamptz" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCB0aW1lc3RhbXAgdG8gdGltZXN0YW1wIHdpdGggdGltZSB6b25l">
      <prototype>
        <parameter name="$1" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="returnValue" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="$2" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="2"/>
        <parameter name="returnValue" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="1"/>
        <parameter name="$2" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="2"/>
        <parameter name="returnValue" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="returnValue" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamptz_cmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamptz_cmp_date" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamptz_cmp_timestamp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamptz_eq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamptz_eq_date" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamptz_eq_timestamp" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamptz_ge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamptz_ge_date" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamptz_ge_timestamp" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamptz_gt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamptz_gt_date" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamptz_gt_timestamp" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamptz_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamptz_larger" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGFyZ2VyIG9mIHR3bw==">
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamptz_le" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamptz_le_date" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamptz_le_timestamp" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamptz_lt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamptz_lt_date" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamptz_lt_timestamp" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamptz_mi" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamptz_mi_interval" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamptz_ne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamptz_ne_date" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamptz_ne_timestamp" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamptz_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamptz_pl_interval" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamptz_recv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamptz_send" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamptz_smaller" schema="pg_catalog" catalog="gamedb" type="2" remarks="c21hbGxlciBvZiB0d28=">
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamptztypmodin" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9PIHR5cG1vZA==">
      <prototype>
        <parameter name="$1" sqlType="_cstring" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timestamptztypmodout" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9PIHR5cG1vZA==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timetypmodin" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9PIHR5cG1vZA==">
      <prototype>
        <parameter name="$1" sqlType="_cstring" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timetypmodout" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9PIHR5cG1vZA==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timetz" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCB0aW1lIHRvIHRpbWUgd2l0aCB0aW1lIHpvbmU=">
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="returnValue" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="time" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="returnValue" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timetz_cmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="$2" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timetz_eq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="$2" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timetz_ge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="$2" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timetz_gt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="$2" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timetz_hash" schema="pg_catalog" catalog="gamedb" type="2" remarks="aGFzaA==">
      <prototype>
        <parameter name="$1" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timetz_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timetz_larger" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGFyZ2VyIG9mIHR3bw==">
      <prototype>
        <parameter name="$1" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="$2" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="2"/>
        <parameter name="returnValue" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timetz_le" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="$2" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timetz_lt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="$2" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timetz_mi_interval" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgLSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="$2" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timetz_ne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="$2" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timetz_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timetz_pl_interval" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="$2" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timetz_recv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timetz_send" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timetz_smaller" schema="pg_catalog" catalog="gamedb" type="2" remarks="c21hbGxlciBvZiB0d28=">
      <prototype>
        <parameter name="$1" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="$2" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="2"/>
        <parameter name="returnValue" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timetzdate_pl" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgKyBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="1"/>
        <parameter name="$2" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="1" index="2"/>
        <parameter name="returnValue" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timetztypmodin" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9PIHR5cG1vZA==">
      <prototype>
        <parameter name="$1" sqlType="_cstring" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timetztypmodout" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9PIHR5cG1vZA==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="timezone" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWRqdXN0IHRpbWVzdGFtcCB0byBuZXcgdGltZSB6b25l">
      <prototype>
        <parameter name="$1" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="2"/>
        <parameter name="returnValue" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="1" index="2"/>
        <parameter name="returnValue" sqlType="timetz" precision="0" scale="0" nullable="true" jdbcType="92" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tinterval" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCB0byB0aW50ZXJ2YWw=">
      <prototype>
        <parameter name="$1" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="tinterval" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tintervalct" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPDwgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="tinterval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tinterval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tintervalend" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZW5kIG9mIGludGVydmFs">
      <prototype>
        <parameter name="$1" sqlType="tinterval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tintervaleq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="tinterval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tinterval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tintervalge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="tinterval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tinterval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tintervalgt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="tinterval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tinterval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tintervalin" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="tinterval" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tintervalle" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="tinterval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tinterval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tintervalleneq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgIz0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="tinterval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="reltime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tintervallenge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgIz49IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="tinterval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="reltime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tintervallengt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgIz4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="tinterval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="reltime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tintervallenle" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgIzw9IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="tinterval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="reltime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tintervallenlt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgIzwgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="tinterval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="reltime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tintervallenne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgIzw+IG9wZXJhdG9y">
      <prototype>
        <parameter name="$1" sqlType="tinterval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="reltime" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tintervallt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="tinterval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tinterval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tintervalne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="tinterval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tinterval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tintervalout" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="tinterval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tintervalov" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgJiYgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="tinterval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tinterval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tintervalrecv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="tinterval" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tintervalrel" schema="pg_catalog" catalog="gamedb" type="2" remarks="dGludGVydmFsIHRvIHJlbHRpbWU=">
      <prototype>
        <parameter name="$1" sqlType="tinterval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="reltime" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tintervalsame" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2Ygfj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="tinterval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tinterval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tintervalsend" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="tinterval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tintervalstart" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgfCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="tinterval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="abstime" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="to_ascii" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZW5jb2RlIHRleHQgZnJvbSBlbmNvZGluZyB0byBBU0NJSSB0ZXh0">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="to_char" schema="pg_catalog" catalog="gamedb" type="2" remarks="Zm9ybWF0IHRpbWVzdGFtcCB0byB0ZXh0">
      <prototype>
        <parameter name="$1" sqlType="interval" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="to_date" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCB0ZXh0IHRvIGRhdGU=">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="date" precision="0" scale="0" nullable="true" jdbcType="91" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="to_hex" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCBpbnQ4IG51bWJlciB0byBoZXg=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="to_json" schema="pg_catalog" catalog="gamedb" type="2" remarks="bWFwIGlucHV0IHRvIGpzb24=">
      <prototype>
        <parameter name="$1" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="json" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="to_number" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCB0ZXh0IHRvIG51bWVyaWM=">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="to_timestamp" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29udmVydCB0ZXh0IHRvIHRpbWVzdGFtcCB3aXRoIHRpbWUgem9uZQ==">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="to_tsquery" schema="pg_catalog" catalog="gamedb" type="2" remarks="bWFrZSB0c3F1ZXJ5">
      <prototype>
        <parameter name="$1" sqlType="regconfig" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="to_tsvector" schema="pg_catalog" catalog="gamedb" type="2" remarks="dHJhbnNmb3JtIHRvIHRzdmVjdG9y">
      <prototype>
        <parameter name="$1" sqlType="regconfig" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="tsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="tsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="transaction_timestamp" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y3VycmVudCB0cmFuc2FjdGlvbiB0aW1l">
      <prototype>
        <parameter name="returnValue" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="translate" schema="pg_catalog" catalog="gamedb" type="2" remarks="bWFwIGEgc2V0IG9mIGNoYXJhY3RlcnMgYXBwZWFyaW5nIGluIHN0cmluZw==">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="trigger_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="trigger" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="trigger_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="trigger" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="trunc" schema="pg_catalog" catalog="gamedb" type="2" remarks="TUFDIG1hbnVmYWN0dXJlciBmaWVsZHM=">
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="macaddr" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="macaddr" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="ts_debug" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZGVidWcgZnVuY3Rpb24gZm9yIGN1cnJlbnQgdGV4dCBzZWFyY2ggY29uZmlndXJhdGlvbg==">
      <prototype>
        <parameter name="config" sqlType="regconfig" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="document" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="alias" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="3"/>
        <parameter name="description" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="4"/>
        <parameter name="token" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="5"/>
        <parameter name="dictionaries" sqlType="_regdictionary" precision="0" scale="0" nullable="true" jdbcType="2003" type="4" index="6"/>
        <parameter name="dictionary" sqlType="regdictionary" precision="0" scale="0" nullable="true" jdbcType="1111" type="4" index="7"/>
        <parameter name="lexemes" sqlType="_text" precision="0" scale="0" nullable="true" jdbcType="2003" type="4" index="8"/>
      </prototype>
      <prototype>
        <parameter name="document" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="alias" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="2"/>
        <parameter name="description" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="3"/>
        <parameter name="token" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="4"/>
        <parameter name="dictionaries" sqlType="_regdictionary" precision="0" scale="0" nullable="true" jdbcType="2003" type="4" index="5"/>
        <parameter name="dictionary" sqlType="regdictionary" precision="0" scale="0" nullable="true" jdbcType="1111" type="4" index="6"/>
        <parameter name="lexemes" sqlType="_text" precision="0" scale="0" nullable="true" jdbcType="2003" type="4" index="7"/>
      </prototype>
    </procedure>
    <procedure name="ts_headline" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2VuZXJhdGUgaGVhZGxpbmU=">
      <prototype>
        <parameter name="$1" sqlType="regconfig" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="4"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="regconfig" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="$3" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="ts_lexize" schema="pg_catalog" catalog="gamedb" type="2" remarks="bm9ybWFsaXplIG9uZSB3b3JkIGJ5IGRpY3Rpb25hcnk=">
      <prototype>
        <parameter name="$1" sqlType="regdictionary" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="_text" precision="0" scale="0" nullable="true" jdbcType="2003" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="ts_match_qv" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgQEAgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="ts_match_tq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgQEAgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="ts_match_tt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgQEAgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="ts_match_vq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgQEAgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="tsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="ts_parse" schema="pg_catalog" catalog="gamedb" type="2" remarks="cGFyc2UgdGV4dCB0byB0b2tlbnM=">
      <prototype>
        <parameter name="parser_oid" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="txt" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="tokid" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="4" index="3"/>
        <parameter name="token" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="4"/>
      </prototype>
      <prototype>
        <parameter name="parser_name" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="txt" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="tokid" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="4" index="3"/>
        <parameter name="token" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="4"/>
      </prototype>
    </procedure>
    <procedure name="ts_rank" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVsZXZhbmNl">
      <prototype>
        <parameter name="$1" sqlType="_float4" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="$2" sqlType="tsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="4"/>
        <parameter name="returnValue" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="_float4" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="$2" sqlType="tsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="returnValue" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="tsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="tsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="ts_rank_cd" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVsZXZhbmNl">
      <prototype>
        <parameter name="$1" sqlType="_float4" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="$2" sqlType="tsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="4"/>
        <parameter name="returnValue" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="_float4" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="$2" sqlType="tsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="returnValue" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="tsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="tsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="ts_rewrite" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmV3cml0ZSB0c3F1ZXJ5">
      <prototype>
        <parameter name="$1" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="$3" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="returnValue" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="ts_stat" schema="pg_catalog" catalog="gamedb" type="2" remarks="c3RhdGlzdGljcyBvZiB0c3ZlY3RvciBjb2x1bW4=">
      <prototype>
        <parameter name="query" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="word" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="2"/>
        <parameter name="ndoc" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="4" index="3"/>
        <parameter name="nentry" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="4" index="4"/>
      </prototype>
      <prototype>
        <parameter name="query" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="weights" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="word" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="3"/>
        <parameter name="ndoc" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="4" index="4"/>
        <parameter name="nentry" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="4" index="5"/>
      </prototype>
    </procedure>
    <procedure name="ts_token_type" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2V0IHBhcnNlcidzIHRva2VuIHR5cGVz">
      <prototype>
        <parameter name="parser_oid" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="tokid" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="4" index="2"/>
        <parameter name="alias" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="3"/>
        <parameter name="description" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="4"/>
      </prototype>
      <prototype>
        <parameter name="parser_name" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="tokid" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="4" index="2"/>
        <parameter name="alias" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="3"/>
        <parameter name="description" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="4" index="4"/>
      </prototype>
    </procedure>
    <procedure name="ts_typanalyze" schema="pg_catalog" catalog="gamedb" type="2" remarks="dHN2ZWN0b3IgdHlwYW5hbHl6ZQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tsmatchjoinsel" schema="pg_catalog" catalog="gamedb" type="2" remarks="am9pbiBzZWxlY3Rpdml0eSBvZiB0c3ZlY3RvciBAQCB0c3F1ZXJ5">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="4"/>
        <parameter name="$5" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="5"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tsmatchsel" schema="pg_catalog" catalog="gamedb" type="2" remarks="cmVzdHJpY3Rpb24gc2VsZWN0aXZpdHkgb2YgdHN2ZWN0b3IgQEAgdHNxdWVyeQ==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="4"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tsq_mcontained" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPEAgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tsq_mcontains" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgQD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tsquery_and" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgJiYgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tsquery_cmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tsquery_eq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tsquery_ge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tsquery_gt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tsquery_le" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tsquery_lt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tsquery_ne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tsquery_not" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgISEgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tsquery_or" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgfHwgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tsqueryin" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tsqueryout" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tsqueryrecv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tsquerysend" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="tsquery" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tsrange" schema="pg_catalog" catalog="gamedb" type="2" remarks="dHNyYW5nZSBjb25zdHJ1Y3Rvcg==">
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
      </prototype>
    </procedure>
    <procedure name="tsrange_subdiff" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZmxvYXQ4IGRpZmZlcmVuY2Ugb2YgdHdvIHRpbWVzdGFtcCB2YWx1ZXM=">
      <prototype>
        <parameter name="$1" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamp" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tstzrange" schema="pg_catalog" catalog="gamedb" type="2" remarks="dHN0enJhbmdlIGNvbnN0cnVjdG9y">
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="$3" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="3"/>
      </prototype>
    </procedure>
    <procedure name="tstzrange_subdiff" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZmxvYXQ4IGRpZmZlcmVuY2Ugb2YgdHdvIHRpbWVzdGFtcCB3aXRoIHRpbWUgem9uZSB2YWx1ZXM=">
      <prototype>
        <parameter name="$1" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="1"/>
        <parameter name="$2" sqlType="timestamptz" precision="0" scale="0" nullable="true" jdbcType="93" type="1" index="2"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tsvector_cmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="tsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tsvector_concat" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgfHwgb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="tsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="tsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tsvector_eq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="tsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tsvector_ge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="tsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tsvector_gt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="tsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tsvector_le" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="tsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tsvector_lt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="tsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tsvector_ne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="tsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="tsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tsvector_update_trigger" schema="pg_catalog" catalog="gamedb" type="2" remarks="dHJpZ2dlciBmb3IgYXV0b21hdGljIHVwZGF0ZSBvZiB0c3ZlY3RvciBjb2x1bW4=">
      <prototype>
        <parameter name="returnValue" sqlType="trigger" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tsvector_update_trigger_column" schema="pg_catalog" catalog="gamedb" type="2" remarks="dHJpZ2dlciBmb3IgYXV0b21hdGljIHVwZGF0ZSBvZiB0c3ZlY3RvciBjb2x1bW4=">
      <prototype>
        <parameter name="returnValue" sqlType="trigger" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tsvectorin" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="tsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tsvectorout" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="tsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tsvectorrecv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="tsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="tsvectorsend" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="tsvector" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="txid_current" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2V0IGN1cnJlbnQgdHJhbnNhY3Rpb24gSUQ=">
      <prototype>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="txid_current_snapshot" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2V0IGN1cnJlbnQgc25hcHNob3Q=">
      <prototype>
        <parameter name="returnValue" sqlType="txid_snapshot" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="txid_snapshot_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="txid_snapshot" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="txid_snapshot_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="txid_snapshot" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="txid_snapshot_recv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="txid_snapshot" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="txid_snapshot_send" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="txid_snapshot" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="txid_snapshot_xip" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2V0IHNldCBvZiBpbi1wcm9ncmVzcyB0eGlkcyBpbiBzbmFwc2hvdA==">
      <prototype>
        <parameter name="$1" sqlType="txid_snapshot" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="txid_snapshot_xmax" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2V0IHhtYXggb2Ygc25hcHNob3Q=">
      <prototype>
        <parameter name="$1" sqlType="txid_snapshot" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="txid_snapshot_xmin" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2V0IHhtaW4gb2Ygc25hcHNob3Q=">
      <prototype>
        <parameter name="$1" sqlType="txid_snapshot" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="txid_visible_in_snapshot" schema="pg_catalog" catalog="gamedb" type="2" remarks="aXMgdHhpZCB2aXNpYmxlIGluIHNuYXBzaG90Pw==">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="$2" sqlType="txid_snapshot" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="uhc_to_utf8" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgVUhDIHRvIFVURjg=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="unique_key_recheck" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZGVmZXJyZWQgVU5JUVVFIGNvbnN0cmFpbnQgY2hlY2s=">
      <prototype>
        <parameter name="returnValue" sqlType="trigger" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="unknownin" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="unknown" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="unknownout" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="unknown" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="unknownrecv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="unknown" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="unknownsend" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="unknown" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="unnest" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZXhwYW5kIGFycmF5IHRvIHNldCBvZiByb3dz">
      <prototype>
        <parameter name="$1" sqlType="anyarray" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="upper" schema="pg_catalog" catalog="gamedb" type="2" remarks="dXBwZXJjYXNl">
      <prototype>
        <parameter name="$1" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="anyelement" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="upper_inc" schema="pg_catalog" catalog="gamedb" type="2" remarks="aXMgdGhlIHJhbmdlJ3MgdXBwZXIgYm91bmQgaW5jbHVzaXZlPw==">
      <prototype>
        <parameter name="$1" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="upper_inf" schema="pg_catalog" catalog="gamedb" type="2" remarks="aXMgdGhlIHJhbmdlJ3MgdXBwZXIgYm91bmQgaW5maW5pdGU/">
      <prototype>
        <parameter name="$1" sqlType="anyrange" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="utf8_to_ascii" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgVVRGOCB0byBTUUxfQVNDSUk=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="utf8_to_big5" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgVVRGOCB0byBCSUc1">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="utf8_to_euc_cn" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgVVRGOCB0byBFVUNfQ04=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="utf8_to_euc_jis_2004" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgVVRGOCB0byBFVUNfSklTXzIwMDQ=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="utf8_to_euc_jp" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgVVRGOCB0byBFVUNfSlA=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="utf8_to_euc_kr" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgVVRGOCB0byBFVUNfS1I=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="utf8_to_euc_tw" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgVVRGOCB0byBFVUNfVFc=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="utf8_to_gb18030" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgVVRGOCB0byBHQjE4MDMw">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="utf8_to_gbk" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgVVRGOCB0byBHQks=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="utf8_to_iso8859" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgVVRGOCB0byBJU08tODg1OS04">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="utf8_to_iso8859_1" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgVVRGOCB0byBMQVRJTjE=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="utf8_to_johab" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgVVRGOCB0byBKT0hBQg==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="utf8_to_koi8r" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgVVRGOCB0byBLT0k4Ug==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="utf8_to_koi8u" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgVVRGOCB0byBLT0k4VQ==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="utf8_to_shift_jis_2004" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgVVRGOCB0byBTSElGVF9KSVNfMjAwNA==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="utf8_to_sjis" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgVVRGOCB0byBTSklT">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="utf8_to_uhc" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgVVRGOCB0byBVSEM=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="utf8_to_win" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgVVRGOCB0byBXSU4xMjU4">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="uuid_cmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="uuid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="uuid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="uuid_eq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="uuid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="uuid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="uuid_ge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="uuid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="uuid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="uuid_gt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="uuid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="uuid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="uuid_hash" schema="pg_catalog" catalog="gamedb" type="2" remarks="aGFzaA==">
      <prototype>
        <parameter name="$1" sqlType="uuid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="uuid_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="uuid" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="uuid_le" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="uuid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="uuid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="uuid_lt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="uuid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="uuid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="uuid_ne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="uuid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="uuid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="uuid_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="uuid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="uuid_recv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="uuid" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="uuid_send" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="uuid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="var_pop" schema="pg_catalog" catalog="gamedb" type="2" remarks="cG9wdWxhdGlvbiB2YXJpYW5jZSBvZiBudW1lcmljIGlucHV0IHZhbHVlcyAoc3F1YXJlIG9mIHRoZSBwb3B1bGF0aW9uIHN0YW5kYXJkIGRldmlhdGlvbik=">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="var_samp" schema="pg_catalog" catalog="gamedb" type="2" remarks="c2FtcGxlIHZhcmlhbmNlIG9mIG51bWVyaWMgaW5wdXQgdmFsdWVzIChzcXVhcmUgb2YgdGhlIHNhbXBsZSBzdGFuZGFyZCBkZXZpYXRpb24p">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="varbit" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWRqdXN0IHZhcmJpdCgpIHRvIHR5cG1vZCBsZW5ndGg=">
      <prototype>
        <parameter name="$1" sqlType="varbit" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="3"/>
        <parameter name="returnValue" sqlType="varbit" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="varbit_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="varbit" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="varbit_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="varbit" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="varbit_recv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="varbit" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="varbit_send" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="varbit" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="varbit_transform" schema="pg_catalog" catalog="gamedb" type="2" remarks="dHJhbnNmb3JtIGEgdmFyYml0IGxlbmd0aCBjb2VyY2lvbg==">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="varbitcmp" schema="pg_catalog" catalog="gamedb" type="2" remarks="bGVzcy1lcXVhbC1ncmVhdGVy">
      <prototype>
        <parameter name="$1" sqlType="varbit" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="varbit" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="varbiteq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="varbit" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="varbit" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="varbitge" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPj0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="varbit" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="varbit" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="varbitgt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPiBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="varbit" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="varbit" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="varbitle" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD0gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="varbit" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="varbit" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="varbitlt" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPCBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="varbit" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="varbit" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="varbitne" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPD4gb3BlcmF0b3I=">
      <prototype>
        <parameter name="$1" sqlType="varbit" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="varbit" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="varbittypmodin" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9PIHR5cG1vZA==">
      <prototype>
        <parameter name="$1" sqlType="_cstring" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="varbittypmodout" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9PIHR5cG1vZA==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="varchar" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWRqdXN0IHZhcmNoYXIoKSB0byB0eXBtb2QgbGVuZ3Ro">
      <prototype>
        <parameter name="$1" sqlType="name" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="varchar" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="varchar" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="1" index="3"/>
        <parameter name="returnValue" sqlType="varchar" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="varchar_transform" schema="pg_catalog" catalog="gamedb" type="2" remarks="dHJhbnNmb3JtIGEgdmFyY2hhciBsZW5ndGggY29lcmNpb24=">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="varcharin" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="varchar" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="varcharout" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="varchar" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="varcharrecv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="oid" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="2"/>
        <parameter name="$3" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="3"/>
        <parameter name="returnValue" sqlType="varchar" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="varcharsend" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="varchar" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="varchartypmodin" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9PIHR5cG1vZA==">
      <prototype>
        <parameter name="$1" sqlType="_cstring" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="1"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="varchartypmodout" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9PIHR5cG1vZA==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="variance" schema="pg_catalog" catalog="gamedb" type="2" remarks="aGlzdG9yaWNhbCBhbGlhcyBmb3IgdmFyX3NhbXA=">
      <prototype>
        <parameter name="$1" sqlType="int8" precision="0" scale="0" nullable="true" jdbcType="-5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="int2" precision="0" scale="0" nullable="true" jdbcType="5" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="float4" precision="0" scale="0" nullable="true" jdbcType="7" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="returnValue" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="version" schema="pg_catalog" catalog="gamedb" type="2" remarks="UG9zdGdyZVNRTCB2ZXJzaW9uIHN0cmluZw==">
      <prototype>
        <parameter name="returnValue" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="void_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="void_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="void_recv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="void_send" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="width" schema="pg_catalog" catalog="gamedb" type="2" remarks="Ym94IHdpZHRo">
      <prototype>
        <parameter name="$1" sqlType="box" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="width_bucket" schema="pg_catalog" catalog="gamedb" type="2" remarks="YnVja2V0IG51bWJlciBvZiBvcGVyYW5kIGluIGVxdWlkZXB0aCBoaXN0b2dyYW0=">
      <prototype>
        <parameter name="$1" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="1"/>
        <parameter name="$2" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="2"/>
        <parameter name="$3" sqlType="numeric" precision="0" scale="0" nullable="true" jdbcType="2" type="1" index="3"/>
        <parameter name="$4" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="4"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="1"/>
        <parameter name="$2" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="2"/>
        <parameter name="$3" sqlType="float8" precision="0" scale="0" nullable="true" jdbcType="8" type="1" index="3"/>
        <parameter name="$4" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="4"/>
        <parameter name="returnValue" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="win1250_to_latin2" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgV0lOMTI1MCB0byBMQVRJTjI=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="win1250_to_mic" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgV0lOMTI1MCB0byBNVUxFX0lOVEVSTkFM">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="win1251_to_iso" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgV0lOMTI1MSB0byBJU08tODg1OS01">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="win1251_to_koi8r" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgV0lOMTI1MSB0byBLT0k4Ug==">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="win1251_to_mic" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgV0lOMTI1MSB0byBNVUxFX0lOVEVSTkFM">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="win1251_to_win866" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgV0lOMTI1MSB0byBXSU44NjY=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="win866_to_iso" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgV0lOODY2IHRvIElTTy04ODU5LTU=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="win866_to_koi8r" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgV0lOODY2IHRvIEtPSThS">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="win866_to_mic" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgV0lOODY2IHRvIE1VTEVfSU5URVJOQUw=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="win866_to_win1251" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgV0lOODY2IHRvIFdJTjEyNTE=">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="win_to_utf8" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW50ZXJuYWwgY29udmVyc2lvbiBmdW5jdGlvbiBmb3IgV0lOMTI1OCB0byBVVEY4">
      <prototype>
        <parameter name="$1" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="$3" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="3"/>
        <parameter name="$4" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="4"/>
        <parameter name="$5" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="5"/>
        <parameter name="returnValue" sqlType="void" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="xideq" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="xid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="xid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="xideqint4" schema="pg_catalog" catalog="gamedb" type="2" remarks="aW1wbGVtZW50YXRpb24gb2YgPSBvcGVyYXRvcg==">
      <prototype>
        <parameter name="$1" sqlType="xid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="$2" sqlType="int4" precision="0" scale="0" nullable="true" jdbcType="4" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="xidin" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="xid" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="xidout" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="xid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="xidrecv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="xid" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="xidsend" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="xid" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="xml" schema="pg_catalog" catalog="gamedb" type="2" remarks="cGVyZm9ybSBhIG5vbi12YWxpZGF0aW5nIHBhcnNlIG9mIGEgY2hhcmFjdGVyIHN0cmluZyB0byBwcm9kdWNlIGFuIFhNTCB2YWx1ZQ==">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="xml" precision="0" scale="0" nullable="true" jdbcType="2009" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="xml_in" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="xml" precision="0" scale="0" nullable="true" jdbcType="2009" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="xml_is_well_formed" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZGV0ZXJtaW5lIGlmIGEgc3RyaW5nIGlzIHdlbGwgZm9ybWVkIFhNTA==">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="xml_is_well_formed_content" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZGV0ZXJtaW5lIGlmIGEgc3RyaW5nIGlzIHdlbGwgZm9ybWVkIFhNTCBjb250ZW50">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="xml_is_well_formed_document" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZGV0ZXJtaW5lIGlmIGEgc3RyaW5nIGlzIHdlbGwgZm9ybWVkIFhNTCBkb2N1bWVudA==">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="xml_out" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="xml" precision="0" scale="0" nullable="true" jdbcType="2009" type="1" index="1"/>
        <parameter name="returnValue" sqlType="cstring" precision="0" scale="0" nullable="true" jdbcType="1111" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="xml_recv" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="internal" precision="0" scale="0" nullable="true" jdbcType="1111" type="1" index="1"/>
        <parameter name="returnValue" sqlType="xml" precision="0" scale="0" nullable="true" jdbcType="2009" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="xml_send" schema="pg_catalog" catalog="gamedb" type="2" remarks="SS9P">
      <prototype>
        <parameter name="$1" sqlType="xml" precision="0" scale="0" nullable="true" jdbcType="2009" type="1" index="1"/>
        <parameter name="returnValue" sqlType="bytea" precision="0" scale="0" nullable="true" jdbcType="-2" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="xmlagg" schema="pg_catalog" catalog="gamedb" type="2" remarks="Y29uY2F0ZW5hdGUgWE1MIHZhbHVlcw==">
      <prototype>
        <parameter name="$1" sqlType="xml" precision="0" scale="0" nullable="true" jdbcType="2009" type="1" index="1"/>
        <parameter name="returnValue" sqlType="xml" precision="0" scale="0" nullable="true" jdbcType="2009" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="xmlcomment" schema="pg_catalog" catalog="gamedb" type="2" remarks="Z2VuZXJhdGUgWE1MIGNvbW1lbnQ=">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="returnValue" sqlType="xml" precision="0" scale="0" nullable="true" jdbcType="2009" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="xmlconcat2" schema="pg_catalog" catalog="gamedb" type="2" remarks="YWdncmVnYXRlIHRyYW5zaXRpb24gZnVuY3Rpb24=">
      <prototype>
        <parameter name="$1" sqlType="xml" precision="0" scale="0" nullable="true" jdbcType="2009" type="1" index="1"/>
        <parameter name="$2" sqlType="xml" precision="0" scale="0" nullable="true" jdbcType="2009" type="1" index="2"/>
        <parameter name="returnValue" sqlType="xml" precision="0" scale="0" nullable="true" jdbcType="2009" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="xmlexists" schema="pg_catalog" catalog="gamedb" type="2" remarks="dGVzdCBYTUwgdmFsdWUgYWdhaW5zdCBYUGF0aCBleHByZXNzaW9u">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="xml" precision="0" scale="0" nullable="true" jdbcType="2009" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="xmlvalidate" schema="pg_catalog" catalog="gamedb" type="2" remarks="dmFsaWRhdGUgYW4gWE1MIHZhbHVl">
      <prototype>
        <parameter name="$1" sqlType="xml" precision="0" scale="0" nullable="true" jdbcType="2009" type="1" index="1"/>
        <parameter name="$2" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="xpath" schema="pg_catalog" catalog="gamedb" type="2" remarks="ZXZhbHVhdGUgWFBhdGggZXhwcmVzc2lvbg==">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="xml" precision="0" scale="0" nullable="true" jdbcType="2009" type="1" index="2"/>
        <parameter name="$3" sqlType="_text" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="3"/>
        <parameter name="returnValue" sqlType="_xml" precision="0" scale="0" nullable="true" jdbcType="2003" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="xml" precision="0" scale="0" nullable="true" jdbcType="2009" type="1" index="2"/>
        <parameter name="returnValue" sqlType="_xml" precision="0" scale="0" nullable="true" jdbcType="2003" type="5" index="0"/>
      </prototype>
    </procedure>
    <procedure name="xpath_exists" schema="pg_catalog" catalog="gamedb" type="2" remarks="dGVzdCBYTUwgdmFsdWUgYWdhaW5zdCBYUGF0aCBleHByZXNzaW9u">
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="xml" precision="0" scale="0" nullable="true" jdbcType="2009" type="1" index="2"/>
        <parameter name="$3" sqlType="_text" precision="0" scale="0" nullable="true" jdbcType="2003" type="1" index="3"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
      <prototype>
        <parameter name="$1" sqlType="text" precision="0" scale="0" nullable="true" jdbcType="12" type="1" index="1"/>
        <parameter name="$2" sqlType="xml" precision="0" scale="0" nullable="true" jdbcType="2009" type="1" index="2"/>
        <parameter name="returnValue" sqlType="bool" precision="0" scale="0" nullable="true" jdbcType="-7" type="5" index="0"/>
      </prototype>
    </procedure>
  </data-source>
</component>